-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAbout.html
112 lines (92 loc) · 4.22 KB
/
About.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
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html lang="en">
<head>
<title>Resturant main</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://kit.fontawesome.com/4b453ada1a.js" crossorigin="anonymous"></script>
<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=Roboto&display=swap" rel="stylesheet">
<link rel="stylesheet" href="CSS/styles.css">
</head>
<body>
<!-- navbar -->
<nav class="navbar navbar-expand-lg navbar-dark">
<a class="navbar-brand" href="#" style="color: white;" >The<span class="hot">HOT</span>pot</a>
<a class="navbar-brand" href="index.html">
<img src="images/hutpot logo.png" alt="logo" style="height: 100px;">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#collapsibleNavbar">
<span class="navbar-toggler-icon" ></span>
</button>
<div class="collapse navbar-collapse" id="collapsibleNavbar">
<ul class="navbar-nav ml-auto">
<li class="nav-item active">
<a class="nav-link" href="index.html" style="color: #ff0000;">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="About.html" style="color: white;">About us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html" style="color: white;">contact us</a>
</li>
</ul>
</div>
</nav>
<section id="about-page">
<div class="container-fluid about">
<h3>About us</h3>
<p>HutPot is the collaborative outcome of seasoned food & business operators who have combined their past 25 years’ industry experience to create this exciting dining offer.</p>
<p>We believe in creating interesting and unique places to enjoy our simple and great tasting “Real African” food. Sometimes we pop up in shopping centres, sometimes in a great shopping strip. Either way we’ll make sure you feel like you’re in our home and ready for some of our great, simple food.
</p>
</div>
<div class="row">
<div class="col-lg-6 column">
<h3>Mission</h3>
<p>“To serve exquisite and authentic African Cuisine representing our cultures and legendary culinary gastronomy with typical dishes with a creative and talented touch, delivering a distinctly unique dining experience to fulfill our guest expectations.”</p>
<div class="row">
<div class="col-lg-6">
<button type="button" class="btn btn-outline-primary" onclick="addStaff()">Add staff</button>
</div>
<div class="col-lg-6">
<button type="button" class="btn btn-outline-primary" onclick="viewStaff()">View staff</button>
</div>
</div>
</div>
<div class="col-lg-6 column">
<h3> Vision</h3>
<p>To be the world’s favorite African restaurant</p>
</div>
</div>
</section>
<!-- footer section -->
<section id="footerHead">
<div class="row">
<div class="footcol col-lg-4 col-sm-6">
<div class="footer">
<a href="About.html"><i class="far fa-address-card fa-3x" style="color: white;"></i></a>
<a href="About.html"><h5 style="color: white;">About Us</h5></a>
</div>
</div>
<div class="footcol col-lg-4 col-sm-6">
<div class="footer">
<a href="contact.html"><i class="fas fa-at fa-3x" style="color: white;"></i></a>
<a href="contact.html"><h5 style="color: white;">Contact Us</h5></a>
</div>
</div>
<div class="footcol col-lg-4 col-sm-6">
<div class="footer">
<a href="https://wa.me/qr/V72HUBVXOJGDP1"><i class="fab fa-whatsapp fa-4x" style="color: white;"></i></a>
</div>
</div>
</div>
<p style="color: white; text-align: center;">© 2022 African food group of companies</p>
</section>
<script src="Javascript/javascript.js"></script>
</body>
</html>