-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.html
66 lines (56 loc) · 2.47 KB
/
about.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>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Normalize CSS Stylesheet -->
<link rel="stylesheet" href="./assets/css/normalize.css">
<!--Import Google Icon Font-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Cormorant+Garamond|Hind+Vadodara|Roboto&display=swap"
rel="stylesheet">
<!-- Custom CSS -->
<link rel="stylesheet" href="./assets/css/main.css">
<title>Bookly</title>
</head>
<body>
<div class="navbar-fixed">
<nav>
<div class="nav-wrapper white">
<a href="index.html" class="brand-logo teal-text text-darken-4 ml">Bookly</a>
<ul id="nav-mobile" class="right">
<li><a class="teal-text text-darken-2" href="help.html">Help</a></li>
<li><a class="teal-text text-darken-2" href="about.html">About</a></li>
</ul>
</div>
</nav>
</div>
<div class="wrapper container">
<div class="wendyTitle"><h1>Wendy</h1></div>
<div class="wendy-image">
<img src="./assets/images/wendy.png">
</div>
<div class="wendy-bio">
<p>Wendy was responsible for all of the JS that handles our API calls and dynamically creating the cards based on the information returned from the API.</p>
</div>
<div class="robertTitle"><h1>Robert</h1></div>
<div class="robert-image">
<img src="./assets/images/robert.jfif">
</div>
<div class="robert-bio">
<p>Robert was responsable for the page layout, HTML and CSS required for the site.</p>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous">
</script>
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<!-- local javascript -->
<script src="./assets/javascript/googlebooks_api.js" type="text/javascript"></script>
</body>
</html>