-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (48 loc) · 1.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>🐹My Test Title</title>
</head>
<body>
<img src="dog.jpg" alt="dog">
<h1>Its Me!</h1>
<p><em>Im testing out italics</em></p>
<p>Another paragraph</p>
<hr>
<h3>About Me</h3>
<ul>
<li>First Item - <a href="http://google.ca">Google</a></li>
<li>Second Item</li>
<li>Third Item</li>
</ul>
<hr>
<h3>Skills</h3>
<table>
<tr>
<td> <table cellspacing="10">
<tr>
<td>Skill 1 </td>
<td>⭐⭐⭐⭐</td>
</tr>
<tr>
<td>Skill 3 </td>
<td>⭐⭐⭐</td>
</tr>
</table></td>
<td> <table>
<tr>
<td>Skill 2 </td>
<td>⭐⭐⭐⭐</td>
</tr>
<tr>
<td>Skill 4 </td>
<td>⭐⭐⭐</td>
</tr>
</table></td>
</tr>
</table>
<a href="contact.html">Contact Me</a>
</body>
</html>