-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (49 loc) · 1.63 KB
/
index.html
File metadata and controls
53 lines (49 loc) · 1.63 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link href="./style/main.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet">
<title>Properly Partisan</title>
</head>
<body>
<header>
<div id="logo"><a href="https://brtacks.com/" target="_blank">The Brass Tacks</a></div>
<h1>Properly Partisan</h1>
<p class="description">How politicians employ moral foundations to advance their ideologies. <span style="color: red">(in progress)</span></p>
<p class="byline">By <a href="https://jasonkao.me" target="_blank">Jason Kao</a></p>
</header>
<div id="content">
<div id="graphic">
<div id="video-graphic">
<div id="video-container">
<video id="video" src="./data/video/bush.mp4">
Sorry, your browser doesn't support embedded videos
</video>
</div>
<div id="text">
<!-- <span (caption)> -->
<!-- <span (word)> -->
<!-- ... -->
</div>
</div>
<div id="chart-container">
<svg id="svg">
<g id="chart" transform="translate(20,40)">
<g class="y axis" />
<g class="bars"></g>
<g class="x axis" />
</g>
</svg>
</div>
</div>
</div>
<div class="btn-container">
<button id="begin-graphic" onclick="begin()">
Begin Graphic
</button>
</div>
<script src="./lib/d3.v5.min.js"></script>
<script src="./src/main.js"></script>
</body>
</html>