-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExercise_Module_2.html
More file actions
39 lines (32 loc) · 912 Bytes
/
Exercise_Module_2.html
File metadata and controls
39 lines (32 loc) · 912 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
33
34
35
36
37
38
39
<!--Exercise #1 and #2-->
<html>
<head>
<meta charset="UTF-8">
<title>Exercises Module 2</title>
</head>
<body>
<div id="app">
<!--Exercise #1 and #2-->
<button id="btn" onclick="newSquare()">Create New Square</button>
<div id="box"></div>
</div>
<script src="Exercise_Module_2.js"></script>
</body>
</html>
<!--Exercise #3 and #4-->
<html>
<head>
<meta charset="UTF-8">
<title>Exercises Module 2</title>
</head>
<body>
<div id="app">
<!--Exercise #3-->
<ul></ul>
<!--Exercise #4-->
<input type="text" placeholder="Type a New Name" />
<button id="add" onclick="newName()">Add Name</button>
</div>
<script src="Exercise_Module_2.js"></script>
</body>
</html>