-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (50 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>HTML Development Knowledge Grasp</title>
</head>
<body>
<table>
<tr>
<td>
<img src="photo.jpg" width="25%" height="25%" />
</td>
<td>
<p>
<h1>Kyle Blizzard</h1>
<em>Learner of Web Development<br>
Crusher of Enemies <br>
Friend of Cats</em>
</p>
</td>
</tr>
</table>
<hr>
<b>Things of Note</b>
<ol>
<li>Founder of Go Wrestle</li>
<li>Trying to make some $ with Computers</li>
<li>Loose and mostly friendly plans for world domination</li>
</ol>
<b>Work Stuff</b>
<table>
<tr>
<td>Dates</td>
<td>Work</td>
</tr>
<tr>
<td>2010-2015</td>
<td>Apple</td>
</tr>
</tr>
<tr>
<td>2013-1099</td>
<td>Red Hat</td>
</tr>
</table>
<hr>
<a href="/hobbies.html">Hobbies Link</a>
<a href="/contactus.html">Contact the Bliz</a>
</body>
</html>