-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (32 loc) · 1007 Bytes
/
index.html
File metadata and controls
50 lines (32 loc) · 1007 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title> The Reader's Nook </title>
<link rel="stylesheet" type="text/css" href="styles.css">
<link href="https://fonts.googleapis.com/css?family=Lustria|Raleway&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
img
{
height:auto;
width:100%;
}
</style>
</head>
<body>
<div id="page-wrapper">
<script type="text/javascript" src="includes/header.js"></script>
<div class="main-container">
<img src="photos/index/banner.jpg" alt="Main Banner">
<h2>
Welcome to The Reader’s Nook!
</h2>
<p>
We donate your used books to underprivileged communities around the Boston area. Click the links above to navigate our website and learn more!
</p>
</div>
<script type="text/javascript" src="includes/footer.js"></script>
</div>
</body>
</html>