-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbooks.html
More file actions
110 lines (107 loc) · 4.09 KB
/
books.html
File metadata and controls
110 lines (107 loc) · 4.09 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Eden Side | Books</title>
<meta name="description" content="The making of a responsive website">
<meta name="keywords" content="web design, responsive web site">
<meta name="author" content="Joyce-O">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="main.css" />
<script src="main.js"></script>
</head>
<body>
<header>
<div class="container">
<div id="branding">
<h1>Eden Side</h1>
</div>
<div>
<nav>
<ul>
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="about.html">About</a>
</li>
<li>
<a class="current" href="books.html">Books</a>
</li>
</ul>
</nav>
</div>
</div>
</header>
<section id="newsletter">
<div class="container">
<h2>Subscribe To Our Newsletter</h2>
<form action="">
<input type="email" placeholder="Enter Email...">
<button type="submit" class="btn1">Subscribe</button>
</form>
</div>
</section>
<section id="main">
<div class="container">
<article id="main-col">
<h3 class="page-title">Books</h3>
<ul id="books">
<li>
<h4>Color Ballet</h4>
<p>Paper back Available</p>
<p>Pricing: ₦1500.00</p>
</li>
<li>
<h4>Acupa: My Fate</h4>
<p>Stretch your mind with this master piece!</p>
<p>Pricing: ₦2000.00</p>
</li>
<li>
<h4>Dancing In The Rain</h4>
<p>Read online all day</p>
<p>Pricing: ₦500.00</p>
</li>
<li>
<h4>The Embrace</h4>
<p>Online and paper back available</p>
<p>Pricing: ₦1000.00</p>
</li>
</ul>
</article>
<aside id="sidebar">
<div class="dark">
<h4>Send Me A Copy</h4>
<form class="send-copy">
<div>
<label>Name</label><br>
<input type="text" placeholder="Name">
</div>
<div>
<label>Email</label><br>
<input type="email" placeholder="Email address">
</div>
<div>
<label>Book Title</label><br>
<select name="option" id="option">
<option value="1">Select 🅷</option>
<option value="2">Acupa: My Fate</option>
<option value="3">Color Ballet</option>
<option value="4">Dancing In The Rain</option>
<option value="5">The Embrace</option>
</select>
<button class="btn1 btn-send" type="submit">Send</button>
</div>
</form>
</div>
</aside>
</div>
</section>
<footer>
<p>Joyce-O
<span id="copyright">copyright © 2018</span>
</p>
</footer>
</body>
</html>