-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (32 loc) · 840 Bytes
/
index.html
File metadata and controls
33 lines (32 loc) · 840 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Starter Plot</title>
<link rel="stylesheet" href="main.css">
</head>
<body>
<main>
<h1>Hello, World!</h1>
<div class="main-body">
<div>
<p>
Starter repo to explore adding observable plot to a non-framework project, using d3, and data art.
</p>
<nav class="page-nav">
<a href="./growing/">Growing</a>
<a href="./interactive/">Interactive</a>
<a href="./snowing/">Snowing</a>
</nav>
</div>
<div id="plot-container"></div>
<div id="d3-container">
<h2>D3 Example</h2>
<svg id="d3-svg"></svg>
</div>
</div>
</main>
<script type="module" src="main.js"></script>
</body>
</html>