-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (52 loc) · 1.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>fade-in-on-scroll</title>
<link rel="stylesheet" href="./style.css" />
<script defer src="./app.js"></script>
</head>
<body>
<section class="fade-in-on-scroll">
<h1>Test Block 1</h1>
<p>...testing</p>
<h2 class="scroll-text">Scroll</h2>
<div class="flash"><img src="./img/chevon-down.png" width="50px"/></div>
</section>
<section class="fade-in-on-scroll">
<h2>Test Block 2</h2>
<p>...testing</p>
</section>
<section class="fade-in-on-scroll">
<h3>Test Block 3</h3>
<p>...testing</p>
</section>
<section class="fade-in-on-scroll">
<h4>Test Block 4</h4>
<p>...testing</p>
</section>
<section class="fade-in-on-scroll">
<h5>Test Block 5</h5>
<p>...testing</p>
</section>
<section class="fade-in-on-scroll">
<h6>Test Block 6</h6>
<p>...testing</p>
</section>
<div class="logos">
<div class="github">
<a href="https://github.com/JawaraGordon/fade-in-on-scroll" target="_blank" rel="noopener"><img src="./img/github-logo.png"></a>
</div>
</div>
<div class="footer">
<div>
<h2>
<a href="http://www.jawaragordon.com" target="_blank" rel="noopener">JawaraGordon.com</a>
</h2>
</div>
</div>
</div>
</body>
</html>