-
Notifications
You must be signed in to change notification settings - Fork 113
Expand file tree
/
Copy pathqualifications.html
More file actions
executable file
·70 lines (69 loc) · 1.78 KB
/
qualifications.html
File metadata and controls
executable file
·70 lines (69 loc) · 1.78 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Your Name :: Qualifications</title>
</head>
<body>
<div class="container">
<div class="header">
<div class="logo">
<h1><a href="#">Your Name</a></h1>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="qualifications.html">Qualifications</a></li>
<li><a href="skill-set.html">Skill Set</a></li>
<li><a href="work-experience.html">Work Experience</a></li>
</ul>
</nav>
</div>
<div class="content">
<div class="section">
<h2>Qualifications</h2>
<p><img src="images/dishTwo.jpg" alt="Jodrell Bank" /></p>
<table>
<tr>
<th>Qualification</th>
<th>Subject</th>
<th>Grade</th>
<th>Date</th>
</tr>
<tr>
<td>'A' Level</td>
<td>Maths</td>
<td>A</td>
<td>August 2005</td>
</tr>
<tr>
<td>'A' Level</td>
<td>Physics</td>
<td>A</td>
<td>August 2015</td>
</tr>
<tr>
<td>GCSE</td>
<td>English</td>
<td>B</td>
<td>August 2013</td>
</tr>
<tr>
<td>GCSE</td>
<td>Maths</td>
<td>A</td>
<td>August 2013</td>
</tr>
</table>
</div>
<div class="sidebar">
<h2>Contact Details</h2>
<address>My Address</address>
</div>
</div>
<div id="footer">
<p>Copyright © 2024</p>
</div>
</div>
</body>
</html>