-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsimple.html
More file actions
30 lines (27 loc) · 965 Bytes
/
simple.html
File metadata and controls
30 lines (27 loc) · 965 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
<!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>Simple Page</title>
<!-- make d3 available -->
<script src="https://d3js.org/d3.v5.min.js"></script>
<link rel="stylesheet" type="text/css" href="simple.css" />
</head>
<body>
<h1>A Simple Web page</h1>
<h2>A Simple Description</h2>
<p>This is a simple web page.</p>
<h2 id="picture-description">A Simple Picture</h2>
<svg id="simple-pic" width="600" height="200">
<rect x="50" y="50" width="200" height="100" fill="red" />
<circle cx="150" cy="100" r="40" fill="navy" />
<text x="150" y="100" fill="white" text-anchor="middle" font-size="25">
Simple message
</text>
</svg>
<!-- run javascript in this file -->
<script src="simple.js"></script>
</body>
</html>