-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontacts.html
More file actions
45 lines (43 loc) · 1.8 KB
/
contacts.html
File metadata and controls
45 lines (43 loc) · 1.8 KB
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
<!DOCTYPE html>
<head>
<link href='css/bootstrap.css' rel='stylesheet'>
<link rel='stylesheet' href='style.css'>
<meta name="viewport" content="width=device-width,
initial-scale=1.0">
</head>
<div class="jumbotron text-center">
<div id="myNav" class="overlay">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<div class="overlay-content">
<a href="index.html">Home</a>
<a href="products.html">Products</a>
<a href="food.html">Food</a>
<a href="about.html">About</a>
<a href="share.html">Share</a>
</div>
</div>
<span style="font-size:30px;cursor:pointer" onclick="openNav()">☰ open</span>
<script>
function openNav() {
document.getElementById("myNav").style.height = "100%";
}
function closeNav() {
document.getElementById("myNav").style.height = "0%";
}
</script>
<header>
<h2>Get in touch! </h2>
<h4>Who we are:</h4>
</header>
<body>
<div class=“row”>
<div class="col-xs-3"><h2>Giulia</h2> Philosophy student at the University of Bristol <img src="giulia_image.jpg" class="img-fluid" alt="Photo of Giulia"></div>
<div class="col-xs-3"><h2>Sophie</h2> Neuroscience student at the University of Bristol<img src="sophie_image.jpg" class="img-fluid" alt="Photo of Sophie"></div>
<div class="col-xs-3"><h2>Dharapa</h2> Aerospace(eng)student at the University of Bristol<img src="dharapa_image.jpg" class="img-fluid" alt="Photo of Dharapa"></div>
<div class="col-xs-3"><h2>Georgie</h2> Neuroscience student at the University of Bristol<img src="georgie_image.jpg" class="img-fluid" alt="Photo of Georgie"></div>
</div>
<div class="row">
<div class="col-xs-12"><button type="button" class="btn btn-default"><a href=mailto:gl15784@my.bristol.ac.uk>Email us!</a></button></div>
</div>
</body>
</div>