-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (56 loc) · 2.63 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
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"> <!-- no zoom -->
<meta name="description" content="Final Project for CS211">
<meta name="author" content="Camille Malonzo">
<title></title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<link href="bootstrap/css/bootstrap.css" rel="stylesheet">
<script src="bootstrap/js/bootstrap.js" type="text/javascript"></script>
<script src="source/scripts/helper/jshashtable/hashset.js"></script>
<script src="source/scripts/helper/jshashtable/hashtable.js"></script>
<script src="source/Graph.js"></script>
<link href="css/main.css" rel="stylesheet">
</head>
<body>
<div class="container jumbotron" id="overview">
<div class="row">
<div class="col-sm-9" id="left">
<h2 id="networkTitle">Robber Barons Foundation Donor Network</h2>
<svg id="donorGraph"></svg>
</div>
<div class="col-sm-3" id="right">
<div class="profile">
<h2 class="profile-name">Donor Name</h2>
<div class="profile-img"><img class="prof-img" src="images/donors-final/all.jpg"></div>
<div class="profile-info">
<table class="table">
<tr>
<th>Donation Total</th>
<td class="profile-donation"></td>
</tr>
<tr>
<th>Number of Friends</th>
<td class="profile-numLinks"></td>
</tr>
<tr>
<th>Value of 1st Degree Network</th>
<td class="profile-1stDegree"></td>
</tr>
<tr>
<th>Value of 2nd Degree Network</th>
<td class="profile-2ndDegree"></td>
</tr>
</table>
</div>
</div>
</div>
</div>
</div>
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
<script src="source/donorGraph.js"></script>
</body>
<script type="text/javascript" src="source/scripts/retina.min.js"></script>
</html>