forked from HackYourFuture/JavaScript2
-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (24 loc) · 732 Bytes
/
index.html
File metadata and controls
25 lines (24 loc) · 732 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="style.css" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Foo Coding Book Array</title>
</head>
<body>
<section class="section">
<h2>Catt's Recommended Reading</h2>
<br />
<div id="quoteSpace"></div>
<div id="bookList"></div>
<script src="app.js"></script>
<div id="footer">
Visit
<a href="https://www.goodreads.com/user/show/6395246-cattrina" target="_blank">Goodreads</a>
to see more of my favourite books.
</div>
</section>
</body>
</html>