-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (73 loc) · 1.92 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
<!DOCTYPE html>
<html>
<head>
<title>Sally's Resume'</title>
<link rel="stylesheet" type="text/css" href="main.css">
<meta name ="description" content="Sally student's Resume. Come and see if Sally is the emplloyee for you (hint: she is).">
</head>
<body>
<main>
<section>
<h1>Sally Student</h1>
<p>I'm an aspiring full stack web developer. I love cats, coding and crocheting.</p>
</section>
<section>
<h2>Skills</h2>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
<li>jQuery</li>
</ul>
</section>
<section>
<h2>Education</h2>
<ul>
<li>4 A level's from Bear's Hollow Sixth Form College.</li>
<li>Degree in aeronautical engineering from Cambridge University.</li>
</ul>
</section>
<section>
<h2>Employment History</h2>
<table cellpadding="10%"
border="1px">
<thead>
<tr>
<th>Company</th>
<th>Job Title</th>
<th>Date Started</th>
<th>Date Left</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>Blaze Industries</td>
<td>Fire Technician</td>
<td>10/07/2015</td>
<td>16/05/2016</td>
<td>I worked with other fire technicians to produce extremely technical fire.</td>
</tr>
<tr>
<td>Magic Bus Designs</td>
<td>Wheel Designer</td>
<td>30/07/2015</td>
<td>01/10/2017</td>
<td>I was in charge of designing the wheel bus for the Magic Bus.</td>
</tr>
</tbody>
</table>
</section>
<section>
<h2>Contact Info</h2>
<address>
Sally Student<br>
You can email me at: <a href="mailto:[email protected]">[email protected]</a><br>
Or phone me on: 07854226874<br>
</address>
<img src="http://ia.media-imdb.com/images/M/MV5BMTY5NzE3NzU3MF5BMl5BanBnXkFtZTgwMjg0NTQ5MDE@._V1_UX214_CR0,0,214,317_AL_.jpg"
alt="A picture of me!">
</section>
</main>
</body>
</html>