-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpart_one.html
138 lines (137 loc) · 3.62 KB
/
part_one.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Mock Two</title>
</head>
<body>
<header>
Inside of header - let's add a navbar with some essential links
<nav>
<a href="#">Home</a>
<a href="#"> About</a>
<a href="#"> Contact</a>
</nav>
</header>
<hr>
<section>
<h2>Here is the main section of our page - it consists of a new articles</h2>
<article>
<h2>Article 1 - 1995 was a pretty crazy year for programming languages!</h2>
<p>Don't believe me? Just check this table 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>
<h2>Article 2 - Coming soon...</h2>
</article>
<h2>Contact us!</h2>
<form action="#">
<h2>General Information</h2>
<div>
<label for="fname">First Name</label>
<input type="text" id="fname">
</div>
<div>
<label for="lname">Last Name</label>
<input type="text" id="lname">
</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>
<h2>Essential Questions</h2>
<span>What kind of work do you need?</span>
<div>
<label for="programming">Programming: </label>
<input type="checkbox" id="programming" name="programming">
</div>
<div>
<label for="design">Design: </label>
<input type="checkbox" id="design">
</div>
<div>
<label for="singing">Singing: </label>
<input type="checkbox" id="singing">
</div>
<div>
<label for="comedy">Comedy: </label>
<input type="checkbox" id="comedy">
</div>
<br>
<span>How interested are you in our design skills?</span>
<div>
<label for="very_low">Very Low</label>
<input type="radio" id="very_low" name="interest" value="very low">
</div>
<div>
<label for="low">Low</label>
<input type="radio" id="low" name="interest" value="low">
</div>
<div>
<label for="medium">Medium</label>
<input type="radio" id="medium" name="interest" value="medium">
</div>
<div>
<label for="high">High</label>
<input type="radio" id="high" name="interest" value="high">
</div>
<div>
<label for="very_high">Very High</label>
<input type="radio" id="very_high" name="interest" value="very high">
</div>
<div>
<input type="submit" value="Submit me!">
</div>
</form>
</section>
<footer>
Here is our footer - let's make sure we copyright © this!
</footer>
</body>
</html>