-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
48 lines (42 loc) · 1.15 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<div class="container">
<h1>Hello world!</h1>
</div>
</body>
<style>
body {
background: linear-gradient(149deg, rgba(33,210,254,0.6) 0%, rgba(88,166,221,0.5) 29%, rgba(90,137,253,0.5) 59%, rgba(154,86,209,0.5) 100%);
}
.container {
display: flex;
width: 100%;
height: 100vh;
align-items: center;
justify-content: center;
}
h1 {
animation: pulse 2s ease-in-out infinite;
margin: 0;
}
@keyframes pulse {
0% {
transform: scale(1);
}
50% {
transform: scale(1.2);
}
100% {
transform: scale(1);
}
}
</style>
</html>