-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (37 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Grid Follower</title>
</head>
<body>
<div id="container">
<section>
<img src="/images/photo-2cd.jpg" />
<div class="shade"></div>
<div class="content">
<h1>First Headline</h1>
</div>
</section>
<section class="tall">
<img src="/images/photo-65f.jpg" />
<div class="shade"></div>
<div class="content">
<h1>Second Headline</h1>
</div>
</section>
<section>
<img src="/images/photo-38j.jpg" />
<div class="shade"></div>
<div class="content">
<h1>Third Headline</h1>
<button id="circle-button">Click here to know more</button>
</div>
</section>
</div>
<div id="cursor"></div>
<script type="module" src="/main.js"></script>
</body>
</html>