This repository was archived by the owner on May 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (44 loc) · 1.35 KB
/
Copy pathindex.html
File metadata and controls
44 lines (44 loc) · 1.35 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
<html>
<head>
<title>MAS.S70 | Build your personal website workshop</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400" rel="stylesheet">
<style>
body {
margin: 0;
padding: 3%;
font-family: 'Open Sans', sans-serif;
}
.page {
margin: 0 auto;
max-width: 800px;
width: 90%;
}
</style>
</head>
<body>
<div class="page">
<h1>D3plus + D3 + HTML + CSS</h1>
<p>
In this workshop, we plan to build a personal website using D3plus,
D3, HTML, and CSS. You're expected to customize your visualizations
to reflect your personality with your own dataset. In the process,
we will introduce a new concept of how can we add user interface
elements to control your visualizations.
</p>
<h2> Examples </h2>
<ol>
<li>
<a target="_blank" href="myhomepage.html"> Personal website | HTML + CSS </a>
</li>
<li>
<a target="_blank" href="myhomepage.html#svg_map"> Map | D3plus </a>
</li>
<li>
<a target="_blank" href="myhomepage.html#svg_bubble"> Bubbels | D3 + UI elemnts </a>
</li>
<li>
<a target="_blank" href="myhomepage.html#favorites"> Faviorets | SVG + HTML </a>
</ol>
</div>
</body>
</html>