-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patheducation.html
103 lines (97 loc) · 4.38 KB
/
education.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>Education</title>
<link rel='stylesheet prefetch' href='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-alpha.6/css/bootstrap.min.css'>
<link rel='stylesheet prefetch' href='https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css'>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<main>
<nav class="navbar navbar-toggleable-md navbar-light bg-faded fixed-top" role="navigation">
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<a class="navbar-brand" href="index.html">Jenny Lee</a>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="education.html">Education</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="experience.html">Experience</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="skills.html">Skills and Achievements</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
</div>
</nav>
<div class="row header-bg-education">
<div class="container">
<div class="col">
<h1>
<i class="fa fa-graduation-cap" aria-hidden="true"></i> Education </h1>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-sm-9 offset-sm-2">
<div class="row margin-education">
<div class="col-sm-4">
<ul> 2015 - 2016 </ul>
<ul> <img src="https://wwwf.imperial.ac.uk/business-school/wp-content/themes/imperial/images/Imperial_Business_School_Logo_Mobile.png" class="img-fluid mx-auto d-block" alt="Imperial Business School logo">
</ul>
</div>
<div class="col-sm-8 education-item">
<h5> <strong> Imperial College London </strong> </h5>
<p> <i> MSc and DIC with Distinction </i> </p>
<p> <em> Strategic Marketing </em> </p>
<br>
<p> Modules included Branding, Digital Marketing, Consumer Behaviour, and Marketing Strategy and Finance </p>
</div>
</div>
<div class="row margin-education">
<div class="col-sm-4 education-item">
<ul> 2008 - 2013 </ul>
<ul> <img src="rcsi logo.jpg" class="img-fluid mx-auto d-block" alt="RCSI logo">
</ul>
</div>
<div class="col-sm-8 education-item">
<h5> <strong> Royal College of Surgeons in Ireland </strong> </h5>
<p> <i> MB BCh BAO (NUI) and LRCP and SI </i> </p>
<p> <i> Direct Entry Medicine </i> </p>
<br>
<p> Awarded first place in ‘The Zachary Johnson Prize’ the Population and International Health team project
</div>
</div>
<div class="row margin-education">
<div class="col-sm-4">
<ul> 2004 - 2008 </ul>
<ul> <img src="headington-logo.jpg" class="img-fluid mx-auto d-block" alt="Headington logo">
</ul>
</div>
<div class="col-sm-8 education-item">
<h5> <strong> Headington School Oxford </strong> </h5>
<br>
<p> <i> A-Level: Mathematics (A), Chemistry (A), Biology (A) </i> </p>
<p> <i> GCSE: 4A*s (Mathematics, English, English Literature, and Geography) and 5As </i> </p>
</div>
</div>
</div>
</div>
<footer class="text-center">
<hr>
<p> Written and coded by <a href="https://www.freecodecamp.com/hallucinojenlee" target="_blank"> Jenny Lee</a>.</p>
</footer>
</div>
</main>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-alpha.6/js/bootstrap.min.js'></script>
</body>
</html>