-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (64 loc) · 3.51 KB
/
Copy pathindex.html
File metadata and controls
81 lines (64 loc) · 3.51 KB
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
79
80
81
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en">
<head>
<!-- Meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css">
<!-- JavaScript -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj"
crossorigin="anonymous"></script>
<script src="https://d3js.org/d3.v5.js"
integrity="sha384-qbNa7U27VV0Cghe/43y8zEMkmA5M4VxV6MI0k0vdVJKTrBoT2SnBqwccpD0vX+Is"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"
integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6"
crossorigin="anonymous"></script>
<title>CAP 4744/5745 - Interactive Data Visualization - Project 2</title>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="index.html">Project 2: Sefat E Rahman</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item"><a class="nav-link" href="calvin.html">Calvin College 2004</a></li>
<li class="nav-item"><a class="nav-link" href="iris.html">Iris Dataset</a></li>
<li class="nav-item"><a class="nav-link" href="titanic.html">Titanic Passenger List</a></li>
<li class="nav-item"><a class="nav-link" href="wb_st.html">World Bank Data, Science and Technology</a></li>
</ul>
</div>
</nav>
<div class="page">
<h1>CAP 4744/5745 - Interactive Data Visualization</h1>
<h2>Project 2</h2>
<h2>Sefat E Rahman</h2>
<div>
<div style="display: inline-block; text-align: center; margin-right: 30px;">
<a href="calvin.html"><img src="images/calvin.jpg" height="225" alt=""/></a><br>
<a href="calvin.html" style="font-size: 16px;">Calvin College 2004 Dataset<br></a>
</div>
<div style="display: inline-block; text-align: center; margin-right: 30px;">
<a href="iris.html"><img src="images/iris.png" height="225" alt=""/></a><br>
<a href="iris.html" style="font-size: 16px;">Iris Dataset</a>
</div>
</div>
<div style="margin-top: 30px;">
<div style="display: inline-block; text-align: center; margin-right: 30px;">
<a href="titanic.html"><img src="images/titanic.jpg" height="225" alt=""/></a><br>
<a href="titanic.html" style="font-size: 16px;">Titanic Passenger List Dataset</a>
</div>
<div style="display: inline-block; text-align: center; margin-right: 30px;">
<a href="wb_st.html"><img src="images/wb.jpg" height="225" alt=""/></a><br>
<a href="wb_st.html" style="font-size: 16px;">World Bank Data, Science and Technology Dataset</a>
</div>
</div>
</div>
</body>
</html>