-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathp3.html
75 lines (70 loc) · 2.24 KB
/
p3.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
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<title>feel good books</title>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- import the webpage's stylesheet -->
<link rel="stylesheet" href="style.css" />
<!-- import the webpage's javascript file -->
<script src="/script.js" defer></script>
</head>
<body>
<!-- navigation bar -->
<div class="topnav">
<a href="index.html">home</a>
<a href="p1.html">cooking</a>
<a href="p2.html">music</a>
<a href="p4.html">go outside</a>
<a href="p5.html">take a break</a>
</div>
<!-- spacing -->
<div class="break"></div>
<!-- header -->
<div>
<h1 style="color:DodgerBlue;font-family:couriernew">feel good books</h1>
<h2 class="colorchange" style="color:DodgerBlue;font-family:arial">
to prove happy endings do exist
</h2>
<h2 class="colorchange2" style="color:lightyellow;font-family:arial">
click a book to learn more!
</h2>
</div>
<!-- spacing -->
<div class="break"></div>
<!-- bookshelf display -->
<div class="bookshelf">
<div class="popup" onclick="myFunction()">
<div class="book">
<img
src="https://d1w7fb2mkkr3kw.cloudfront.net/assets/images/book/lrg/9781/4351/9781435159631.jpg"
/>
<span class="popuptext" id="myPopup"
>"Pride and Prejudice" by Jane Austen</span
>
</div>
</div>
<div class="popup2" onclick="myFunction2()">
<div class="book">
<img
src="https://images2.penguinrandomhouse.com/cover/9780525508069"
/>
<span class="popuptext2" id="myPopup2"
>"Little Pieces of Hope" by Todd Doughty</span
>
</div>
</div>
<div class="popup3" onclick="myFunction3()">
<div class="book">
<img
src="https://images-na.ssl-images-amazon.com/images/I/91nrw4oWvUL.jpg"
/>
<span class="popuptext3" id="myPopup3"
>"Little House on the Prairie" by Laure Ingalls Wilder</span
>
</div>
</div>
</div>
</body>
</html>