-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
120 lines (102 loc) · 2.43 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
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Todd's Personal Site</title>
<style media="screen">
.myDiv {
border: 5px outset blue;
background-color: lightblue;
}
</style>
</head>
<body>
<hr size="3" noshade>
<table cellspacing="20">
<tr>
<td><img src="./images/Todd-1-circle.png" alt="Todd In The Woods" style="height:100px;"></td>
<td>
<h1>Todd Lawson</h1>
<h3>CEO and President of <a href="http://www.google.com" target="_parent">Mobility Initiative</a></h3>
<p>I am the guy who started this company and will someday make it into something
that everyone will know and respect. But, most importantly, it will make me rich.</p>
</td>
</tr>
</table>
<hr size="3" noshade>
<div class="myDiv">
<h3>Education</h3>
<ul>
<li>Morton High School</li>
<li>Brigham Young University</li>
<li>School of Hard Knocks</li>
</ul>
</div>
<hr>
<table>
<thead>
<tr>
<th>Company Name</th>
<th>Date</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>Novell</td>
<td>1990-1995</td>
<td>Worked as a senior engineer on the directory dev team.</td>
</tr>
<tr>
<td>NetVision</td>
<td>1995-2005</td>
<td>Started and ran a kickass company as CEO.</td>
</tr>
</tbody>
<tfoot>
<td>This is a test</td>
</tfoot>
</table>
<hr>
<h3>Things I like:</h3>
<ol>
<li>My wife</li>
<li>My kids</li>
<li>My dog</li>
</ol>
<hr>
<h3>Skills</h3>
<table border="2">
<tr>
<td>
<table cellspacing="10px">
<tr>
<td>iOS Development</td>
<td>⭐⭐⭐⭐⭐</td>
</tr>
<tr>
<td>Android Development</td>
<td>⭐⭐⭐⭐</td>
</tr>
</table>
</td>
<td>
<table cellspacing="10px">
<tr>
<td>Web Development</td>
<td>⭐⭐⭐⭐⭐</td>
</tr>
<tr>
<td>Flutter Development</td>
<td>⭐⭐⭐⭐⭐⭐</td>
</tr>
</table>
</td>
</tr>
</table>
<hr>
<a href="contact-me.html">Contact Information</a>
<br>
<a href="hobbies.html">My Hobbies</a>
</body>
</html>