-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContact.html
73 lines (57 loc) · 2.56 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
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Oswald:wght@200&display=swap" rel="stylesheet">
<link href=".\styles.css" rel="stylesheet">
<title>Contact</title>
</head>
<body>
<div class="background-image" style="background-image: url('./Media/navbar3_1.jpg.png');"></div>
<!-- Navbar -->
<div id="navbarJQ"></div>
<script>
$("#navbarJQ").load("navbar.html");
</script>
<div style="padding-top: 30vh;"></div>
<!-- About section -->
<section class="container mb-5">
<div class="row">
<div class="col-lg-6" style="font-size: 1.3em;">
In ChemAI-lab, we perform world-class research with people from all over the world. If you're interested
in joining the lab, please send us a message and your CV.
</div>
<div class="col-lg-6">
<div class="person-description">
<h2>Contact</h2>
<hr>
<p>Toronto, Ontario, Canada</p>
<p>
<div class="" style="font-size: 2em; color: #f9b376;">[email protected]</div>
</p>
</div>
</div>
</div>
</section>
<!-- Footer -->
<div id="footerJQ"></div>
<script>
$("#footerJQ").load("footer.html");
</script>
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js"
integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"
integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6"
crossorigin="anonymous"></script>
</body>
</html>