-
Notifications
You must be signed in to change notification settings - Fork 0
/
team.html
49 lines (42 loc) · 1.56 KB
/
team.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="css/index.css" rel="stylesheet">
<title>Team</title>
</head>
<body>
<nav>
<img src="img/logo copy.png" alt="Nav Logo">
<a href="#">Library</a>
<a href="#">About</a>
<a href="/team.html">Team</a>
<a href="#">Contact</a>
<a href="#">Login</a>
</nav>
<br>
<div class="team-content">
<h1>Meet Our Team</h1>
<p>Here is why our team is the only team that you will need for any task that you will ever need completed.</p>
<div>
<section class="img-row-1">
<img src="img/boris-smokrovic-W341a11Rt1g-unsplash.jpg" class="team-images" alt="">
<img src="img/philip-brown-zIj-55l0-lk-unsplash.jpg" class="team-images" alt="">
</section>
<section class="img-row-2">
<img src="img/valerie-bosch-sy070mn0ISo-unsplash.jpg" class="team-images" alt="">
<img src="img/w-r-8OpqRC9gJ1o-unsplash.jpg" class="team-images" alt="">
</section>
</div>
</div>
<br>
<footer>
<p>© Copyright OER Bookr 2019</p>
<img src="https://img.icons8.com/metro/26/000000/facebook.png">
<img src="https://img.icons8.com/metro/26/000000/twitter.png">
<img src="https://img.icons8.com/metro/26/000000/google-plus.png">
</footer>
</body>
</html>