forked from iamshaunjp/git-playlist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nigeria.html
60 lines (53 loc) · 1.39 KB
/
nigeria.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>From Nigeria</title>
<style>
body {
background: rgb(143, 161, 194);
}
h1 {
font-size: 60px
}
p {
font-size: 30px
}
.center {
text-align: center
}
.turn {
width: 100px;
height: 100px;
/* background: black; */
border-radius: 50%;
border-left: 6px solid rgb(128, 0, 0);
border-right: 6px solid rgb(223, 132, 14);
border-top: 6px solid green;
border-bottom: 6px solid rgb(20, 106, 153);
animation-name: turn;
animation-direction: alternate-reverse;
animation-iteration-count: infinite;
animation-duration: 3s;
margin: 10px auto
}
@keyframes turn{
0%{
transform: rotate(0deg);
}
100%{
transform: rotate(360deg);
}
}
</style>
</head>
<body>
<h1 class="center">FROM NIGERIA</h1>
<p class="center">Thank tou very much from <Nigeria></Nigeria></p>
<hr>
<div class="turn">
</div>
</body>
</html>