-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwishlist.html
More file actions
27 lines (24 loc) · 745 Bytes
/
wishlist.html
File metadata and controls
27 lines (24 loc) · 745 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Wish List Program</title>
<link rel="stylesheet" href="wishlist.css">
</head>
<body>
<div id="listPage">
<h1>My Wish List</h1>
<div id="formArea">
<label>What I want:
<input type="text" id="iWant" />
</label>
<button type="button" id="addIt">Add It!</button>
<br /><br />
<button type="button" id="printable" onclick="printView()">Print Your List</button>
</div>
<ul id="wishList"></ul>
</div>
<script src="wishlist.js"></script>
</body>
</html>