-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex2.html
More file actions
146 lines (142 loc) · 4.22 KB
/
index2.html
File metadata and controls
146 lines (142 loc) · 4.22 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Article Page</title>
</head>
<body>
<header>
<a href="#">Home</a>
<a href="#">About</a>
<a href="#">Contact</a>
</header>
<hr>
<article>
<h4>1995 was a pretty crazy year for programming languages!</h4>
<p>Don't believe me? Just check the tables out:<p>
<table>
<thead>
<tr>
<th>Language</th>
<th>Designed By</th>
<th>First Appeared</th>
</tr>
</thead>
<tbody>
<tr>
<td>C++</td>
<td>Bjarne Stroustrup</td>
<td>1983</td>
</tr>
<tr>
<td>Python</td>
<td>Guido van Rossum</td>
<td>1991</td>
</tr>
<tr>
<td>Ruby</td>
<td>Yukihiro Matsumoto("Matz")</td>
<td>1995</td>
</tr>
<tr>
<td>JavaScript</td>
<td>Brendan Eich</td>
<td>1995</td>
</tr>
<tr>
<td>Java</td>
<td>James Gosling</td>
<td>1995</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>PHP</td>
<td>Rasmus Lerdorf</td>
<td>1995</td>
</tr>
</tfoot>
</table>
</article>
<article>
<h4>Coming soon...</h4>
<h4>Contact us!</h4>
</article>
<header>
<h4>General Information</h4>
</header>
<form action="#">
<div>
<label for="firstname">First Name</label>
<input type="text" id="firstname">
</div>
<div>
<label for="lastname">Last Name</label>
<input type="text" id="lastname">
</div>
<div>
<label for="email">Email</label>
<input type="email" id="email">
</div>
<div>
<label for="dob">Date Of Birth</label>
<input type="date" id="dob">
</div>
</form>
<header>
<h4>Essential Questions</h4>
</header>
<form action="#">
<div>
What kind of work do you need?
</div>
<div>
<label for="program">Programming:</label>
<input type="checkbox" name="work" value="program" id="program">
</div>
<div>
<label for="design">Design:</label>
<input type="checkbox" name="work" value="design" id="design">
</div>
<div>
<label for="sing">Singing:</label>
<input type="checkbox" name="work" value="sing" id="sing">
</div>
<div>
<label for="comedy">Comedy:</label>
<input type="checkbox" name="work" value="comedy" id="comedy">
</div>
<br>
<div>
How interested are you in our design skills?
</div>
<div>
<label for="VLow">Very Low</label>
<input type="radio" name="skills" value="vlow" id="vlow">
</div>
<div>
<label for="Low">Low</label>
<input type="radio" name="skills" value="vlow" id="vlow">
</div>
<div>
<label for="medium">Medium</label>
<input type="radio" name="skills" value="medium" id="medium">
</div>
<div>
<label for="High">High</label>
<input type="radio" name="skills" value="high" id="high">
</div>
<div>
<label for="Vhigh">Very High</label>
<input type="radio" name="skills" value="Vhigh" id="Vhigh">
</div>
<div>
<input type="submit" value="submit me!">
</div>
</form>
<footer>
Here is our footer-let's make sure we copyright © this!
</footer>
</body>
</html>