-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstats.html
44 lines (32 loc) · 1.76 KB
/
stats.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
<!DOCTYPE html>
<html>
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"crossorigin="anonymous"></script>
<!--My Script & Stylesheet-->
<script src="script.js"></script>
<link rel="stylesheet" href="stylesheet.css">
<!--eCharts-->
<script src="echarts.js"></script>
</head>
<body class="selectionPageBody" onload="populateChart()">
<div class="container opacityContainer">
<div class="text-center p-3" style="min-width: 460px;"> <!--Heading-->>
<h1>Rick and Morty</h1>
<h3 class="pb-2">Character Gender Statistics</h3>
<div class="btn-group" role="group" aria-label="Basic example">
<a href="selectionPage.html"><button type="button" class="btn btn-dark">Back</button></a>
</div>
</div>
</div>
<!-- Prepare a DOM with a defined width and height for ECharts -->
<div style="max-width:80% ;margin:auto ; border-radius:60%;">
<div id="chartDiv" style="min-width: 600px; min-height: 500px; max-width: 450px; margin: auto;" class="text-center" ></div>
</div>
</body>
</html>