-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (38 loc) · 1.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="images/logodisney.png">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="styles/style.css">
<title>Disney Movies& Tv-shows</title>
</head>
<body>
<header>
<!--TITEL-->
<h1>Disney Movies & Tv-Shows 2021</h1>
<img class="logo" src="images/logodisney.png" alt="">
<!--FILTER BUTTONS-->
<div class="btn-group">
<button value="all">All</button>
<button value="Animation">Animation</button>
<button value="Adventure">Adventure</button>
<button value="Action-Adventure">Action-Adventure</button>
<button value="Crime">Crime</button>
<button value="Comedy"> Comedy</button>
<button value="Family">Family</button>
<button value="Music">Music</button>
<button value="Fantasy">Fantasy</button>
</header>
<main>
<!--BUBBLE-CHART-->
<!--Met svg heb ik een leg vorm gemaakt die ga ik later in de script.js file verwerken-->
<svg id="#bubble-chart"> </svg>
<div class="tooltip">
</div>
</main>
<script type="module" src="./scripts/bubble.js"></script>
<script type="module" src="./scripts/main.js"></script>
<script type="module" src="./scripts/slider.js"></script>
</body>
</html>