-
Notifications
You must be signed in to change notification settings - Fork 0
/
Contact.html
70 lines (68 loc) · 2.29 KB
/
Contact.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
<!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">
<title> Lee Lab: Contact </title>
<link rel="stylesheet" href="./Contact.css">
</head>
<body>
<!-- NavBar -->
<nav class="topnavbar">
<div class="withintopnavbar">
<div class="Logo-and-Button">
<a class="nav-logo" href="./Home.html"> <img src="./Images/Logo Pic New.png" alt="LeeLab Logo"> </a>
<button type="button" class="btn nav-btn"> = </button>
</div>
<div class="allnavlinks">
<a class="navlink" href="./Home.html"> Home </a>
<a class="navlink" href="./Research.html"> Research </a>
<a class="navlink" href="./People.html"> People </a>
<a class="navlink" href="./Publications.html"> Publications </a>
<a class="navlink" href="./Opportunities.html"> Opportunities </a>
<a class="navlink" href="./Contact.html"> Contact </a>
</div>
</div>
</nav>
<!-- End of NavBar -->
<!-- Body of Website -->
<main class="MainBody">
<div class="Contact-Header">
<div class="Inner-Contact-Header">
<h3 class="Contact-Header-Text"> Address and Contact Information </h3>
</div>
</div>
<div class="Contact-Layout">
<div class="Contact-Overall-Text">
<div class="Address-Text">
<h3> Address </h3>
<ul>
<li> MaRS, West Tower, Suite 1521 </li>
<li> 661 University Avenue </li>
<li> Toronto, ON, M5G 1M1 </li>
</ul>
</div>
<div class="Contact-Text">
<h3> Contact </h3>
<table>
<tr>
<td> Office Phone </td>
<td> 416 - 946 - 3813 </td>
</tr>
<tr>
<td> Email </td>
<td> [email protected] </td>
</tr>
</table>
<!-- <p> <i> Office Phone: </i> 416 - 946 - 3813 </p>
<p> <i> Email: </i> [email protected] </p> -->
</div>
</div>
<div class="Contact-Image"> </div>
</div>
</main>
<!-- End of Body of Website -->
<script src="./script.js"></script>
</body>
</html>