-
Notifications
You must be signed in to change notification settings - Fork 0
/
Assignment5Page.html
78 lines (53 loc) · 2.57 KB
/
Assignment5Page.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<title>Group Axis - Fourth Assignment</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Icon -->
<link rel="icon" href="tree project images/icon.png">
<!-- JS -->
<script src="https://code.jquery.com/jquery-3.6.1.js"
integrity="sha256-3zlB5s2uwoUzrXK3BT7AX3FyvojsraNFxCc2vC/7pNI=" crossorigin="anonymous"></script>
<!-- Font -->
<link href="https://fonts.googleapis.com/css2?family=Roboto+Slab&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Fira+Sans+Condensed&display=swap" rel="stylesheet">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<!-- Fontawesome -->
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css"
integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- CSS -->
<link rel="stylesheet" href="static/css/custom_style.css">
<link rel="stylesheet" href="scratch_1.css">
<link rel="stylesheet" href="scratch_2.css">
<!--D3.js -->
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="https://d3js.org/d3-scale-chromatic.v1.js"></script>
<script src="https://cdn.jsdelivr.net/gh/holtzy/D3-graph-gallery@master/LIB/sankey.js"></script>
</head>
<body class="body">
<div id="navigation"></div>
<script src="static/js/top_buttons.js"></script>
<div class="w3-main, AssignPageContent">
<header class="w3-container, AssignTitle">
<h1><b>Fifth Assignment</b></h1>
</header>
<br>
<div class="w3-row-padding w3-margin-bottom, secondAssignTasks">
<!---------------------------------------------------------------------------------------->
<h2><b>Sankey Diagram</b></h2>
<h4>
This is a display of the correlation between Carbon storage and saved Euro of top ten tree species in the Trento tree data.
<br>
</h4>
<div class="taskContainer" id="graph"></div>
<script src="Deniz/sankeydiagram/sankey.js"></script>
<hr>
<br>
</div>
</div>
</body>
</html>