-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (59 loc) · 2.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Document</title>
</head>
<body>
<div class="main-grid">
<header>
<img class="logo" alt="Hobbit Tavern" src="img/logo.svg" alt="The Hobbit house" />
<nav class="nav">
<a href="/contact.html" class="nav__link">Contact</a>
<a href="/booking.html" class="nav__link">Reserve Now</a>
<a href="/testimony.html" class="nav__link">Testimony</a>
<a href="/about.html" class="nav__link">About</a>
</nav>
</header>
<main>
<h1 class="title"><span>T</span>he <span>H</span>obbit <span>H</span>ouse</h1>
<p class="location">The Shire, Middle Earth County</p>
<img src="/img/Hobbit.jpg" alt="Hobit House" class="primary-image" />
<div class="secondary-images">
<div class="panel">
<img src="img/bed.jpg" alt="bed" class="secondary-image" />
<p>We have Beds suitable for Human Size, Dont worry if you are not a Hobbit</p>
</div>
<div class="panel">
<img src="img/table.jpg" alt="BookTable" class="secondary-image" />
<p>
What Hibbits Good at the most? Enjoying the life, best food and drink in all Midlle Earth. We'v provided
the King's palace food service for almost 600 years
<button class="btn">Check our Catering</button>
</p>
</div>
</div>
<p class="description">
Do you need an escape from all your modern world to the Middle Earth? Here at the midlle of the Shire we offer
you a comfortable place to rest, eat and even hunt some rabit at the nearby jungle. The Orcs are not any
problem here, thanks to our Beloved King`s soldjers who protect the perimeter of the town.Just beware of the
Ents, dont make them angry, and you are good to go.
</p>
<button class="btn">Book Now</button>
</main>
<footer>
<div class="social-links">
<a href="#" aria-label="Instagram" class="social-link"
><img src="img/instagram.svg" alt="" class="social-ing"
/></a>
<a href="#" aria-label="airbnb" class="social-link"><img src="img/airbnb.svg" alt="" class="social-ing" /></a>
<a href="#" aria-label="Snapchat" class="social-link"
><img src="img/snapchat-ghost.svg" alt="" class="social-ing"
/></a>
</div>
</footer>
</div>
</body>
</html>