-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
66 lines (64 loc) · 2.12 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
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./styles/style.css">
<script src="https://code.jquery.com/jquery-3.5.1.js" integrity="sha256-QWo7LDvxbWT2tbbQ97B53yJnYU3WhH/C8ycbRAkjPDc=" crossorigin="anonymous"></script>
<title>Scroll</title>
</head>
<body>
<div class="container">
<section>
<div class="title-card">
<h2 class="title">Let's explore the photos in this book!</h2>
<p>by Nataly Merezhuk June 15, 2020</p>
</div>
</section>
<section class="section">
<div class="row">
<div class="column">
<div class="card fade-in" id="part1">
Wow, this is quite the view. We've got people, horses, cars, bicycles...
</div>
</div>
</div>
</section>
<section class="section2">
<div class="row">
<div class="column">
<div class="card fade-in" id="part2">Let's look a bit closer at the photos on the top left of the page. That horse is working hard!</div>
</div>
</div>
</section>
<section class="section3">
<div class="row">
<div class="column">
<div class="card fade-in" id="part3">Oooooh what's this? A Christmas tree and the whole family around it!</div>
</div>
</div>
</section>
<section class="section4">
<div class="row">
<div class="column">
<div class="card fade-in" id="part4">And of course there's a portrait of a Mysterious Stranger tucked away in the corner.</div>
</div>
</div>
</section>
<section class="section5">
<div class="row">
<div class="column">
<div class="card fade-in" id="part5">What a lovely colelction of memories!</div>
</div>
</div>
</section>
<section>
<div class="end-card">
<h2>This little site was inspired by the scroll articles produced by NYT.</h2>
<p>Find me on <a href="https://www.nataly.dev">nataly.dev</a></p>
</div>
</section>
</div>
<script src="main.js"></script>
</body>
</html>