-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (66 loc) · 1.82 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Smart Innovation</title>
<style>
html, body {
height: 100%;
margin: 0;
}
body {
background: url("../assets/geometric-shapes-with-lines.jpg") no-repeat center bottom fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
font-family: sans-serif;
min-height: 100%;
display: grid;
grid-template-rows: 1fr auto;
}
footer {
grid-row-start: 2;
grid-row-end: 3;
}
footer a {
color: gray;
text-decoration: none;
}
h1 {
font-size: 4em;
font-weight: 400;
margin: 20px 0 20px 0;
}
h3 {
font-size: 2em;
font-weight: 400;
margin: 20px 0 20px 0;
}
h5 {
font-size: 1em;
font-weight: 200;
}
.headline {
color: #47424C;
margin-top: 150px;
text-align: center
}
.infoline {
margin: 80px 0 20px 0;
font-size: 1.5em;
}
</style>
</head>
<body>
<div class="headline">
<h1>Smart Innovation</h1>
<h3>an initiative about AI driven innovation</h3>
<h5>powered by <a href="https://www.tecintelli.de" target="_blank" style="color: #4b4b4b !important; text-decoration: none !important;">Tec<span style="color: #f7910c !important;">In</span>telli</a></h5>
<h3 class="infoline">...information about coming up soon...</h3>
</div>
<footer>
<a href="http://www.freepik.com">Background image designed by starline / Freepik</a>
</footer>
</body>
</html>