forked from KarneAsada/scripted_unit9lesson2_forms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (43 loc) · 1.16 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<title>ScriptEd Unit 9: Forms</title>
<style>
</style>
<link href="https://maxcdn.bootstrapcdn.com/twitter-bootstrap/2.0.4/css/bootstrap-combined.min.css" rel="stylesheet" integrity="sha256-uQF1SuiI+Q1kVFZVfnPtXVYdLX18aGvEVJpppHu9FB8= sha512-VKST5syz/NVig4bnwlU49wNPfro91gtfzdIaqWEG5yp5ymN3t6g46iVm9kvhC5lkcVqWhvrwXmernTgLEmTpjg==" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-2.2.0.min.js"></script>
</head>
<body>
<img src="images/ScriptEd.png">
<h1>My Info</h1>
<form id="myForm">
First Name:
<br>
<input type="text" name="first">
<br>
Last Name:
<br>
<!-- Put a text box here -->
<br>
GitHub Username:
<br>
<!-- Put a text box here -->
<br>
Age:
<br>
<!-- Put a dropdown select with multiple age options here -->
<br>
Graduation Year:
<br>
<!-- Put several radio buttons for different years -->
<br>
Favorite Musicians:
<br>
<!-- Put several checkboxes with the names of different musicians -->
<br>
<br>
<input type="submit" value="Test" id="testButton">
</form>
<script src="js/forms.js"></script>
</body>
</html>