-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (25 loc) · 891 Bytes
/
index.html
File metadata and controls
28 lines (25 loc) · 891 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
<!DOCTYPE html>
<html>
<head>
<title>Starter JavaScript Project</title>
<link rel="stylesheet" href="../assets/style.css">
</head>
<body>
<h1>Starter JavaScript Project</h1>
<div>
<h2> Getting text on the page </h2>
<p>I can write text directly in the `dist/index.html` file!</p>
<span id='other-way-of-writing-text'></span>
</div>
<h2> Manipulating Data </h2>
<form>
Number: <input type="number" name="number" id="number"><br>
<input type="button" value="Add Number" id="add-number">
<input type="button" value="Add One To Each Number" id="add-one-to-each-number">
<input type="button" value="Clear For Now" id="temporarily-clear-numbers">
<input type="button" value="Delete Numbers" id="clear-numbers">
</form>
<ul id='list-of-numbers'></ul>
<script src="main.js"></script>
</body>
</html>