-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.html
30 lines (27 loc) · 924 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>DataViz</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="top-bar">
<span class="logo"><img src="dvg.png" height="100%"></span>
<h1>
Data Visualizations
</h1>
<span class="dropdown-btn"><i class="fa fa-angle-down fa-2x"></i></span>
</div>
<div class="dropdown dropdown-visible">
<ul class="dropdown-list">
</ul>
</div>
<div class="container"></div>
<div class="scroll-top"><i class="fa fa-angle-up fa-4x"></i></div>
<script src="script.js"></script>
</body>
</html>