-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
53 lines (45 loc) · 1.25 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
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Turtle Parallax</title>
<link href="main.css" rel="stylesheet" />
</head>
<body>
<div id="app">
<div class="fixed-section firstpage">
<h1 class="heading">Hungry Turtle Code</h1>
<div class="background">
<div class="bg-block"></div>
</div>
<div class="middleground">
<div class="mg-block"></div>
</div>
<div class="foreground">
<div class="fg-block"></div>
</div>
</div>
<div class="fixed-section secondpage">
<h1 class="heading">
<span>Hungry</span>
<span>Turtle</span>
<span>Code</span>
</h1>
<img src="https://res.cloudinary.com/djxscnpzf/image/upload/v1538571617/hungryturtle_high3_af4hyq.png" class="turtlemascot">
</div>
<div class="thirdpage">
<div class="progress-line">
</div>
<div class="title">
<h2>Hello Parallax</h2>
</div>
<div class="imgs">
<img class="img img1" src="https://placekitten.com/g/400/400" alt="">
<img class="img img2" src="https://placekitten.com/g/400/500" alt="">
</div>
<div class="bottom-sect"></div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>