-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheducation.html
66 lines (63 loc) · 2.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Education</title>
</head>
<body>
<header>
<nav>
<table>
<thead>
<tbody>
<tr>
<td><a href="about.html">About</a></td>
<td><a href="skills.html">Skills</a></td>
<td id="activePage">Education</td>
<td><a href="experience.html">Experience</a></td>
<td><a href="interests.html">Interests</a></td>
<!-- <td><a href="contact.html">Contact</a></td> -->
</tr>
</tbody>
</table>
</nav>
</header>
<!-- image -->
<div id="pageContent">
<div id="pictureAndName">
<!-- image -->
<img src="RickAstley.png" alt="Rick Astley">
<!-- Title -->
<h1>Rick Astley</h1>
<p id="title">Singer, Songwriter</p>
<p id="email">[email protected]</p>
</div>
<div id="content">
<h5>Education</h5>
<div id="container">
<div id="container-left">
<p id="companyTitle">PhD in Computer Engineering</p>
<p id="company">University of Calgary</p>
<br>
<p id="companyTitle">MSc in Computer Engineering</p>
<p id="company">University of Calgary</p>
</div>
<div id="container-right">
<p id="date">2014-2018</p>
<p id="company">Calgary, Canada</p>
<br>
<p id="date">2012-2014</p>
<p id="company">Calgary, Canada</p>
</div>
</div>
<p id="credentials">Credentials are available upon request</p>
</div>
</div>
<footer>
<p>©Vishnu Dhanda 2023</p>
</footer>
</body>
</html>