-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (47 loc) · 1.16 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>"Ryan's Personal site"</title>
</head>
<body>
<table cellspacing = "20">
<tr>
<td><img src="./images/brad.jpg" alt="Ryan"></td>
<td>
<h1>Ryan Edwards</h1>
<p><em><Strong>Founder </em>and CEO </Strong>of Redtec ltd</p>
<p>
This is my bio stuff about me generally
</p>
<hr size="10">
<h3>Books and teaching</h3>
<ul>
<li>The complete ios app dev bootcamp</li>
<li>second item</li>
<li>third item</li>
</ul>
<a href="hobbies.html">My Hobbies</a>
<a href="contact-me.html">Contact Me</a>
<hr>
<h3>Jobs</h3>
<table border="1">
<thead>The table head</thead>
<tbody>
<tr>
<td>September</td>
<td>Doing stuff</td>
</tr>
<tr>
<td>November</td>
<td>Doing other stuff</td>
</tr>
</tbody>
<tfoot></tfoot>
</table>
</tr>
</td>
</table>
<a href="test.html">Test Page</a>
</body>
</html>