-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
129 lines (129 loc) · 5.97 KB
/
index.html
File metadata and controls
129 lines (129 loc) · 5.97 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!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="./CSS/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>Thai Food Restaurant</title>
</head>
<body>
<header class="header">
<nav class="nav">
<a href="#" class="smallMenu" onclick="verticalMenu()">
<i class="fa fa-bars" style="color: white;" aria-hidden="true"></i>
</a>
<div id="links">
<a href="#">Food menu</a>
<a href="#">Drinks menu</a>
<a href="#">Book a table</a>
<a href="#">Contact</a>
</div>
</nav>
<!-- Add background img in css for all images - background: url() -->
<div class="bgimg1">
<!-- Resize image to 252px before adding -->
<img class="mainlogo" src="./Images/Logo.png" alt="Restaurant Logo" width="252px">
<h1 class="h1">True Taste of Thailand</h1>
</div>
<!-- <img src="./Images/Header image.jpg" alt="Header image"> -->
</header>
<main>
<section>
<img class="smalllogo" src="./Images/Small logo.png" alt="Small logo">
<h2 class="h2">Our menu</h2>
<hr>
<div class="smallimgflex">
<div class="smallbgimg1"></div>
<div class="smallbgimg2"></div>
<div class="smallbgimg3"></div>
</div>
<!-- <img src="./Images/Menu image1.jpg" alt="Food image 1">
<img src="./Images/Menu image2.jpg" alt="Food image 2">
<img src="./Images/Menu image3.jpg" alt="Food image 3"> -->
<p>Discover our menu and experience the true taste of Thailand</p>
<a class="menuBtn" href="http://">View menu</a>
</section>
<section>
<img class="smalllogo" src="./Images/Small logo.png" alt="Small logo">
<h2 class="h2">Food at home</h2>
<hr>
<p>15% OFF AND EARN 2% BACK</p>
<a class="clickbtn" href="http://">COLLECTION OR DELIVERY - CLICK HERE</a>
<br><br><br>
<hr>
<br><br>
<a class="clickbtn" href="http://">READ ABOUT THE HISTORY OF OUR RESTAURANT</a>
<p>MULTI-AWARD WINNING THAI RESTAURANT AND WINE BAR SINCE 2003</p>
</section>
<section>
<div class="bgimg2">
<!-- <img src="./Images/Main image1.jpg" alt="Main image"> -->
<!-- <h2 class="h2">Make a reservation</h2> -->
<div class="centreElements">
<a href="#" class="reservation">Make a reservation</a>
<p class="parawhite">BOOK A TABLE TODAY TO EXPERIENCE THE BEST THAI FOOD</p>
</div>
</div>
</section>
<section>
<img class="smalllogo" src="./Images/Small logo.png" alt="Small logo">
<h2 class="h2">Reviews</h2>
<div class="quotes">
<section class="starRatings">
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<!-- <br><br><br><br> -->
<q>Unbelievable food and beautiful scenery.</q>
</section>
<section class="starRatings">
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<!-- <br><br><br><br> -->
<q>Enjoyed every moment of being there.</q>
</section>
<section class="starRatings">
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<!-- <br><br><br><br> -->
<q>A great place to go if you are celebrating a special occasion.</q>
</section>
<section class="starRatings">
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<!-- <br><br><br><br> -->
<q>Some of the best tasting Thai food I have ever had!</q>
</section>
</div>
</section>
</main>
<footer>
<img class="smalllogo" src="./Images/Small logo.png" alt="Small logo">
<h2 class="h2">Contact</h2>
<form action="">
<!-- <label for="">First Name:</label> -->
<input type="text" class="input" placeholder="First name"><br><br>
<!-- <label for="">Last Name:</label> -->
<input type="text" class="input" placeholder="Last name"><br><br>
<!-- <label for="">Email:</label> -->
<input type="email" class="input" placeholder="Email address"><br><br>
<input type="button" value="Submit" class="submit">
</form>
<p>Copyright ©</p>
</footer>
<script src="./JS/app.js"></script>
</body>
</html>