-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (31 loc) · 933 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Saira" rel="stylesheet">
<style>
.container {
position: absolute;
top: 50%;
left: 50%;
transform: translateX(-50%) translateY(-50%);
text-align: center;
}
@keyframes example {
0% {background-color: #42f4c5;}
50% {background-color: #41d3f4;}
100% {background-color: #42f4c5;}
} body {
background-color: red;
animation-name: example;
animation-duration:30s;
animation-iteration-count: infinite;
}
</style>
</head>
<body>
<div class="container">
<h1 style="text-align: center; color:white; font-family: 'Saira', sans-serif; font-size: 70px;">Alex Stennet</h1>
<p style="text-align: center; color:white; font-family: 'Saira', sans-serif; font-size: 35px;">Under construction?</p>
</div>
</body
</html>