-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
106 lines (93 loc) · 3.26 KB
/
index.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html>
<head>
<title>Infi</title>
<style type="text/css">
@font-face {
font-family: 'Gudea';
font-style: normal;
font-weight: 400;
src: local('Gudea'), url(https://fonts.gstatic.com/s/gudea/v4/WTDyO8MdshuMhAnoLO0WMw.woff2) format('woff2'), url(https://fonts.gstatic.com/s/gudea/v4/Z6xYy_2MlN1cUISkeodEPA.woff) format('woff');
}
@font-face {
font-family: 'Gudea';
font-style: normal;
font-weight: 700;
src: local('Gudea Bold'), local('Gudea-Bold'), url(https://fonts.gstatic.com/s/gudea/v4/jayXbUsof2FdMCHG3BRDEPesZW2xOQ-xsNqO47m55DA.woff2) format('woff2'), url(https://fonts.gstatic.com/s/gudea/v4/6M2RKly85u67vSsXH0-zqvesZW2xOQ-xsNqO47m55DA.woff) format('woff');
}
@font-face {
font-family: 'Gudea';
font-style: italic;
font-weight: 400;
src: local('Gudea Italic'), local('Gudea-Italic'), url(https://fonts.gstatic.com/s/gudea/v4/kvCX_I6neb4EN5z031M87g.woff2) format('woff2'), url(https://fonts.gstatic.com/s/gudea/v4/7K8okIOV072GIwnptze9lg.woff) format('woff');
}
@font-face {
font-family: 'Shadows Into Light';
font-style: normal;
font-weight: 400;
src: local('Shadows Into Light'), local('ShadowsIntoLight'), url(https://fonts.gstatic.com/s/shadowsintolight/v6/clhLqOv7MXn459PTh0gXYFK2TSYBz0eNcHnp4YqE4Ts.woff2) format('woff2'), url(https://fonts.gstatic.com/s/shadowsintolight/v6/clhLqOv7MXn459PTh0gXYHW1xglZCgocDnD_teV2lMU.woff) format('woff');
}
* {
box-sizing: border-box;
}
html, body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
font-family: "Gudea", "Helvetica", sans-serif;
font-size: 20px;
line-height: 30px;
color: #565656;
background: #f5f5f5;
}
body {
padding: 1em;
}
h1, h2, h3, h4, h5, h6 {
color: black;
}
a {
color: #ff6e00;
text-decoration: none;
}
#content {
max-width: 40em;
margin: 2em auto;
padding: 1em;
background: #fff;
border: 1px solid #ddd;
border-radius: 4px;
box-shadow: 3px 3px 6px #eee;
}
#logo {
float: right;
}
</style>
</head>
<body>
<div id="content">
<div id="logo">
<img src="images/logo.png" />
</div>
<div id="text">
<h1>Infi</h1>
<p>
We are a Dutch software development company, building web applications and mobile apps.
Find more info about us in these other places:
</p>
<ul>
<li><a href="https://infi.nl">infi.nl</a></li>
<li><a href="https://github.com/infi-nl">github.com/infi-nl</a></li>
<li><a href="https://bsky.app/profile/infi.nl">bsky.app/profile/infi.nl</a></li>
<li><a href="https://mastodon.nl/@infinl">mastodon.nl/@infinl</a></li>
<li><a href="https://twitter.com/infinl">twitter.com/infinl</a></li>
<li><a href="https://www.instagram.com/infi.nl">instagram.com/infi.nl</a></li>
<li><a href="https://www.linkedin.com/company/infi">linkedin.com/company/infi</a></li>
<li><a href="https://www.meetup.com/Infi-Developers-Meetup">meetup.com/Infi-Developers-Meetup</a></li>
</ul>
<p>Or just <a href="https://infi.nl/contact/">get in touch</a> directly!</p>
</div>
</div>
</body>
</html>