-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
48 lines (48 loc) · 2.75 KB
/
home.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
<html>
<head>
<title> BT2101 Netflix Originals Data Visualization Demonstration</title>
<link rel="stylesheet" href="stylesheet.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/modules/exporting.js"></script>
</head>
<body>
<div class="mainHeading">Netflix Originals</div>
<br/>
<div id="graph"></div>
<br/>
<div class="shows">
<button onclick='arrestedDevelopment()' class='optionButton'>Arrested Development</button>
<button onclick='bloodLine()' class='optionButton'>Bloodline</button>
<button onclick='boJackHorseman()' class='optionButton'>BoJack Horseman</button>
<button onclick='clubDeCuervos()' class='optionButton'>Club De Cuervos</button>
<button onclick='dareDevil()' class='optionButton'>Daredevil</button>
<button onclick='easy()' class='optionButton'>Easy</button>
<button onclick='fIsForFamily()' class='optionButton'>F is for Family</button>
<button onclick='flaked()' class='optionButton'>Flaked</button>
<button onclick='fullerHouse()' class='optionButton'>Fuller House</button>
<button onclick='graceAndFrankie()' class='optionButton'>Grace and Frankie</button>
<button onclick='hemlockGrove()' class='optionButton'>Hemlock Grove</button>
<button onclick='houseOfCards()' class='optionButton'>House of Cards</button>
<button onclick='jessicaJones()' class='optionButton'>Jessica Jones</button>
<button onclick='ladyDynamite()' class='optionButton'>Lady Dynamite</button>
<button onclick='longmire()' class='optionButton'>Longmire</button>
<button onclick='love()' class='optionButton'>Love</button>
<button onclick='lukeCage()' class='optionButton'>Luke Cage</button>
<button onclick='marcoPolo()' class='optionButton'>Marco Polo</button>
<button onclick='marseille()' class='optionButton'>Marseille</button>
<button onclick='masterOfNone()' class='optionButton'>Master of None</button>
<button onclick='nacros()' class='optionButton'>Narcos</button>
<button onclick='orangeIsTheNewBlack()' class='optionButton'>Orange Is the New Black</button>
<button onclick='sense8()' class='optionButton'>Sense8</button>
<button onclick='strangerThings()' class='optionButton'>Stranger Things</button>
<button onclick='theCharacters()' class='optionButton'>The Characters</button>
<button onclick='theGetDown()' class='optionButton'>The Get Down</button>
<button onclick='theKilling()' class='optionButton'>The Killing</button>
<button onclick='theRanch()' class='optionButton'>The Ranch</button>
<button onclick='trailerParkBoys()' class='optionButton'>Trailer Park Boys</button>
<button onclick='unbreakableKimmySchmidt()' class='optionButton'>Unbreakable Kimmy Schmidt</button>
</div>
<script src="javaScript.js"></script>
</body>
</html>