-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
93 lines (93 loc) · 4.92 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pasta Hut</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9" crossorigin="anonymous">
<link rel="stylesheet" href="./style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Alfa+Slab+One&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Kaushan+Script&display=swap" rel="stylesheet">
</head>
<body>
<section class="h-container">
<div class="container">
<header class="d-flex flex-wrap align-items-center justify-content-center justify-content-md-between py-2 mb-3">
<div class="col-md-3 mb-2 mb-md-0">
<a href="/" class="d-inline-flex link-body-emphasis text-decoration-none">
<img src="./public/images/logo-white-gold.png" width="80px" alt="logo" />
</a>
</div>
<ul class="nav col-12 col-md-auto mb-2 justify-content-center mb-md-0" style=" font-family:'Kaushan Script', cursive;">
<li><a href="./index.html" class="nav-link px-2 link-light">Home</a></li>
<li><a href="./public/spiceyDeals.html" class="nav-link px-2 link-light">Spicey Deals</a></li>
<li><a href="./public/Menu-list.html" class="nav-link px-2 link-light">Menu List</a></li>
<li><a href="./public/homeDelivery.html" class="nav-link px-2 link-light">Home Deliveries</a></li>
<li><a href="./public/hire.html" class="nav-link px-2 link-light">Hire a Personal Pasta Chef</a></li>
</ul>
<div class="col-md-3 text-end">
<button type="button" class="btn btn-outline-light me-2 disabled" style="border: 2px solid; border-radius: 25px;">Reservations?</button>
<a href="tel:9028111613"><button type="button" class="btn btn-outline-light me-2" style="border: 2px solid; border-radius: 25px;">Call</button></a>
</div>
</header>
</div>
<div class="center">
<img src="./public/images/logo-white-gold.png" width="250px" />
<h1>Pasta For All </h1>
<p>"Twirl, Taste, and Savor: Pasta Perfection Awaits!"</p>
<a href="./public/Menu-list.html"><button class="btn btn-outline-light" style="border-radius: 20px; border: 2px solid;">Check Out Our Menu</button></a>
</div>
</section>
</section>
<section class="footer">
<div class="one">
<div class="s-mail">
<P style="color: white;">Straight To Your Inbox</P>
<form>
<label style="color: white;">News & Update From Pasta Hut</label><br/>
<input style="background-color: transparent; border: 0px; border-bottom: 1px solid white;" placeholder="Email Address">
<button class="btn btn-outline-light">Subscribe</button>
</form>
</div>
<div>
<p style="color: white; font-weight: 500;">Socialise With Us.</p>
<div>
<a href="#"><img src="./public/images/facebook.png" width="33px" style="margin-right: 15px;"/></a>
<a href="#"><img src="./public/images/instagram.png" width="33px" style="margin-right: 5px; margin-left: 5px;"/></a>
<a href="#"><img src="./public/images/twitter.png" width="33px" style="margin-left: 20px;"/></a>
</div>
</div>
</div>
<div class="three">
<img src="./public/images/logo-white-gold.png" alt="pastahut-logo" width="170px" />
<p>copyright © 2023 Pasta Hut Restaurant. All Right Reserved.</p>
<p>Terms & conditions Apply.</p>
</div>
<div class="two">
<hr class="dotted-hr" style="width: 100%;">
</div>
<div class="four">
<div class="q-links">
<a href="./index.html"><p>Home</p></a>
<a href="./public/location.html"><p>Our Location</p></a>
<a href="./public/reservations.html"><p>Make Reservations</p></a>
</div>
<div class="q-links">
<a href="./public/media.html"><p>Media</p></a>
<a href="./public/spiceyDeals.html"><p>Spicey Deals</p></a>
<a href="./public/reviews.html"><p>Reviews</p></a>
</div>
<div id="contact">
<p style="color: white; font-weight: bold;">Contact Info</p>
<p style="color: white; font-weight: lighter;">001, New Pasta Road, Oba Akran Ikeja, Lagos Nigeria.</p>
<p style="color: white; font-weight: lighter;"><span style="font-weight: normal;">Phone:</span>+234 902 811 1613</p>
</div>
</div>
</section>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-HwwvtgBNo3bZJJLYd8oVXjrBZt8cqVSpeBNS5n7C8IVInixGAoxmnlMuBnhbgrkm" crossorigin="anonymous"></script>
</body>
</html>