-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (47 loc) · 1.69 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>
<head>
<link type="text/css" rel="stylesheet" href="stylesheet.css"/>
<title> My webpage</title>
</head>
<body>
<h1> Welcome to my page</h1>
<p> This is for practice to make my skills <strong>strong</strong></p>
<p> Some of my favourite game soundtracks</p>
<ul>
<li>Chrono Trigger</li>
<li>Morrowind</li>
<li>Fable</li>
</ul>
<table border=1px>
<thead>
<tr><th colspan="2">My education</th> </tr>
<tr>
<th>School</th>
<th>Year of Graduation</th>
</tr>
</thead>
<tbody>
<tr>
<td>Wood Green</td>
<td>2009</td>
</tr>
<tr>
<td>University of Birmingham</td>
<td>2013</td>
</tr>
<tr>
<td>University of Liverpool</td>
<td>2017</td>
</tr>
</tbody>
</table>
<h2> Some links to my social media</h2>
<ul>
<li><a href="https://www.facebook.com/Doodmeister3000">Facebook</a> </li>
<li><a href="https://www.linkedin.com/in/drewanjohnstone/">Linkedin</a></li>
<li><a href="https://github.com/eJohnstonePhd1991">Github</a></li>
</ul>
<img src="https://www.cats.org.uk/uploads/images/featurebox_sidebar_kids/grief-and-loss.jpg">
</body>
</html>