-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
99 lines (99 loc) · 4.39 KB
/
index.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Lighthouse Hammock</title>
</head>
<body>
<div class="container">
<div class="landing section">
<section class="banner">
<h1>Lighthouse Hammock</h1>
<h3>Bookstore and Publishing House</h3>
<div class="line"></div>
</section>
</div>
<div class="about section">
<section class="banner">
<h2>Who We Are</h2>
<h4>Lighthouse Hammock is an independent bookstore and publisher. You'll find an endless variety of wonderful books from our new and up-and-coming authors.</h4>
<div class="vertical"></div>
</section>
</div>
<div class="genres section">
<section class="banner">
<h2>Our Genres</h2>
<div class="line"></div>
</section>
<section class="cards">
<article class="card">
<img src="images/genre-1.jpg" alt="sci-fi">
<h4 class="upper-h4">Sci-fi and Fantasy</h4>
<h4 class="margin-light-h4">Travel through mysterious and marvelous worlds</h4>
</article>
<article class="card">
<img src="images/genre-2.jpg" alt="general">
<h4 class="upper-h4">General Fiction</h4>
<h4 class="margin-light-h4">Feed your imagination and escape the world for a while</h4>
</article>
<article class="card">
<img src="images/genre-3.jpg" alt="nonfiction">
<h4 class="upper-h4">Nonfiction</h4>
<h4 class="margin-light-h4">Books about our beautiful and amazing world</h4>
</article>
</section>
</div>
<div class="events section">
<section class="banner">
<h2>Our Events</h2>
<div class="line"></div>
</section>
<section class="cards">
<article class="card">
<img src="images/events-1.jpg" alt="author-readings">
<h4 class="upper-h4">Author Readings</h4>
<h4 class="margin-light-h4">
An Annual National Industry Event<br>
January 1, 2020, 9:00 a.m. to 5:00 p.m.<br>
Conference Hall A, National Event Hall
</h4>
</article>
<article class="card">
<img src="images/events-2.jpg" alt="new-book-launch">
<h4 class="upper-h4">New Book Launch</h4>
<h4 class="margin-light-h4">
An Annual National Industry Event<br>
January 1, 2020, 9:00 a.m. to 5:00 p.m.<br>
Conference Hall A, National Event Hall
</h4>
</article>
<article class="card">
<img src="images/events-3.jpg" alt="nonfiction">
<h4 class="upper-h4">Store Renovations</h4>
<h4 class="margin-light-h4">
An Annual National Industry Event<br>
January 1, 2020, 9:00 a.m. to 5:00 p.m.<br>
Conference Hall A, National Event Hall
</h4>
</article>
</section>
</div>
<div class="contact section">
<section class="banner">
<h2>Visit Our Bookstore!</h2>
<h4 class="upper-h4">Mailing Address</h4>
<h4 class="margin-light-h4">123 Anywhere St., Any City, State, Country 12345</h4>
<h4 class="upper-h4">Email Address</h4>
<h4 class="margin-light-h4"><a href="mailto:hello@reallygreatsite.com">hello@reallygreatsite.com</a></h4>
<h4 class="upper-h4">Phone Number</h4>
<h4 class="margin-light-h4"><a href="tel:+1234567890">(123) 456 7890</a></h4>
<div class="vertical"></div>
</section>
<section class="photo"></section>
</div>
</div>
</body>
</html>