-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (66 loc) · 1.96 KB
/
index.html
File metadata and controls
69 lines (66 loc) · 1.96 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>JavaScript Practice</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<h1>
Welcome! Bienvenidos!
</h1>
<p>
You're going to wan't to go under the hood and open your console for
this project.
</p>
</header>
<section class="container">
<!---------------------------------- form for page ten -->
<form id="form-ten">
<h1>pgTen Form</h1>
<div>
<label for="nickName">Nickname:</label>
<input type="text" id="nickName" />
</div>
<div>
<label for="phone">Phone:</label>
<input type="text" id="phone" />
</div>
<input class="button" type="submit" value="Submit" />
</form>
<ul class="things">
<li class="thing">Thing 1</li>
<li class="thing">Thing 2</li>
<li class="thing">Thing 3</li>
</ul>
<!---------------------------------- form for page eleven -->
<h1>Page Eleven Form</h1>
<form id="my-form">
<h1>Add User</h1>
<div class="msg"></div>
<div>
<label for="name">Name:</label>
<input type="text" id="name" />
</div>
<div>
<label for="email">Email:</label>
<input type="text" id="email" />
</div>
<input class="btn" type="submit" value="Submit" />
</form>
<ul id="users"></ul>
</section>
<script src="pgOne.js"></script>
<script src="pgThree.js"></script>
<script src="pgFour.js"></script>
<script src="pgFive.js"></script>
<script src="pgSix.js"></script>
<script src="pgSeven.js"></script>
<script src="pgEight.js"></script>
<script src="pgNine.js"></script>
<script src="pgTen.js"></script>
<script src="pgEleven.js"></script>
</body>
</html>