-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (51 loc) · 1.6 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
<!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>Stranger Things Expanding Cards</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="font/BenguiatStd-BoldItalic/style.css">
<link rel="shortcut icon" href="characters/icon.png">
</head>
<body>
<div class="container">
<div class="panel panel1">
<h3>Dustin</h3>
</div>
<div class="panel panel2">
<h3>Eleven/11</h3>
</div>
<div class="panel panel3">
<h3>Hopper</h3>
</div>
<div class="panel panel4">
<h3>Eddie</h3>
</div>
<div class="panel panel5">
<h3>Vecna</h3>
</div>
<div class="panel panel6">
<h3>Max</h3>
</div>
<div class="panel panel7">
<h3>Lucas</h3>
</div>
<div class="panel panel8">
<h3>Nancy</h3>
</div>
<div class="panel panel9">
<h3>Mike</h3>
</div>
<div class="panel panel10">
<h3>Will</h3>
</div>
<div class="panel panel11">
<h3>Steve</h3>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js" integrity="sha512-894YE6QWD5I59HgZOGReFYm4dnWc1Qt5NtvYSaNcOP+u1T9qYdvdihz0PPSiiqn/+/3e7Jo4EaG7TubfWGUrMQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="script.js"></script>
</body>
</html>