-
Notifications
You must be signed in to change notification settings - Fork 0
/
education.html
51 lines (51 loc) · 1.9 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<link rel="stylesheet" href="style.css"/>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Education</title>
</head>
<body>
<nav>
<ul>
<a hover class="nav-item" href="index.html" >About</a>
<a hover class="nav-item" href="skills.html">Skills</a>
<a class="nav-current">Education</a>
<a hover class="nav-item" href="experience.html">Experience</a>
<a hover class="nav-item"href="interests.html">Interests</a>
</ul>
</nav>
<main>
<div class="main-left">
<img src="https://static.wikia.nocookie.net/parody/images/f/fd/Rick-Astley.jpg" alt="Rick Astley">
<h1>Rick Astley</h1>
<h3>Singer, Songwriter</h3>
<p>[email protected]</p>
</div>
<div class="main-right alt">
<h1>Education</h1>
<div id="alt-container">
<div id="alt-left">
<p id="title">PhD in Computer Engineering</p>
<p>University of Calgary</p>
<br>
<p id="title">MSc in Computer Engineering</p>
<p>University of Calgary</p>
</div>
<div id="alt-right">
<p id="date">2014-2018</p>
<p>Calgary, Canada</p>
<br>
<p id="date">2012-2014</p>
<p>Calgary, Canada</p>
</div>
</div>
<p><i>Credentials are available upon request.</i></p>
</div>
</main>
<footer>
©FindlayMB 2023
</footer>
</body>
</html>