-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (39 loc) · 1.27 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
<!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>Intersection Observer API tutorial</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div id="container">
<div id="stan" class="character">
<img src="images/stan.png" />
<p>Stan</p>
</div>
<div id="kyle" class="character">
<img src="images/kyle.png" />
<p>Kyle</p>
</div>
<div id="kenny" class="character">
<img src="images/kenny.png" />
<p>Kenny</p>
</div>
<div id="cartman" class="character">
<img src="images/cartman.png" />
<p>Cartman</p>
</div>
<div id="wendy" class="character">
<img src="images/wendy.png" />
<p>Wendy</p>
</div>
<div id="ike" class="character">
<img src="images/ike.png" />
<p>Ike</p>
</div>
</div>
<script src="script.js"></script>
</body>
</html>