-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfake_blog.html
More file actions
78 lines (67 loc) · 2.35 KB
/
fake_blog.html
File metadata and controls
78 lines (67 loc) · 2.35 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
<html>
<head>
<meta charset="UTF-8">
<title>Kevin Schmitt</title>
</head>
<h1>Kevin Schmitt</h1>
<body>
<img id="picture" src="weddingpic.jpg" alt="Picture of Me">
<h2>A little bit about me</h2>
<p> I am 29 years old.</p><p> Arlington has been my home for most of my life.</p><p>
After I graduated high school, I left for college in Colorado.</p><p> I have a degree
in business and also served in the U.S. Army. </p><p>I just got married last July.</p><p>
Most recently, I was a high school Math teacher and wrestling coach.</p>
<h3>Here is a table to explain my whereabouts the last decade.</h3>
<table>
<tr>
<td>College</td>
<td>2006 - 2011</td>
</tr>
<tr>
<td>U.S. Army Reserves</td>
<td>2008 - 2017</td>
</tr>
<tr>
<td>Substitute Teacher</td>
<td>2011 - 2012</td>
</tr>
<tr>
<td>Math Teacher</td>
<td>2012 - 2017</td>
</tr>
</table>
<h3>Some of my interests include...</h3>
<ul>
<li>
My pets
</li>
<li>
Wrestling
</li>
<li>
Anything with a motor that involves racing
</li>
<li>
Almost any type of music
</li>
</ul>
<h3>Tell me a bit about yourself!</h3>
<label for="first_name">First Name:</label>
<input type="text" id="first_name" name="first_name">
<br>
<label for="last_name">Last Name:</label>
<input type="text" id="last_name" name="last_name">
<br>
<label for="nickname">Email:</label>
<input type="text" id="nickname" name="nickname">
<h4>Which name would you like to be referred to as?</h4>
<label for="Firstname">First Name</label>
<input type="checkbox" id="first_name" name="name" value="first_name">
<br>
<label for="Lastname">Last Name</label>
<input type="checkbox" id="last_name" name="name" value="last_name">
<br>
<label for="Nickname">Nickname</label>
<input type="checkbox" id="nickname" name="name" value="Nickname">
</body>
</html>