-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path_footer.html
30 lines (29 loc) · 901 Bytes
/
_footer.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<style>
footer {
display: flex;
}
.flex-1 {
flex: 1
}
.flex-2 {
flex: 2
}
</style>
<footer>
<div class="flex-1">
<br/><br/><br/><br/>
<p style="font-weight: bold;font-size:80%;">IT'IS Foundation</p>
<p style="text-align:left;font-size:80%;">
<a href="https://itis.swiss/who-we-are/contact/" target="_blank">Contact IT'IS</a><br/>
<a href="https://itis.swiss" target="_blank">IT'IS Website</a>
</p>
</div>
<div class="flex-2">
<br/><br/><br/><br/>
<p style="text-align:right;font-weight: bold;font-size:80%;">Who We Are</p>
<p style="text-align:right;font-size:80%;">
<a href="https://itis.swiss/who-we-are/" target="_blank">About IT'IS</a><br/>
<a href="https://itis.swiss/who-we-are/our-mission/" target="_blank">Our Mission</a>
</p>
</div>
</footer>