-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (25 loc) · 909 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
<!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">
<meta name="description" content="An animation showing sunrise to sunset along with the shadow of the pyramid changing relatively.">
<meta name="keywords" content="Sunrise, Sunset, Pyramid, Web, HTML, CSS, JavaScript, Animation, Keyframes, CSS Animation">
<meta name="author" content="Abhishek Rawat">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="frame">
<div class="center">
<p class="sky"></p>
<p class="land"></p>
<div class="pyramid-wrapper">
<p class="pyramid pyramid-left"></p>
<p class="pyramid pyramid-right"></p>
</div>
<p class="sun"></p>
</div>
</div>
</body>
</html>