-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbusiness.html
96 lines (80 loc) · 4.41 KB
/
business.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
<!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 href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="stylesheet" href="./index.css">
<title>Delicious Restaurant</title>
</head>
<body>
<div class="container-fluid">
<nav class="nav1">
<ul>
<li><a href="./home.html">Home</a></li>
<li class="active"><a href="./business.html">Business</a></li>
<li><a href="./information.html">Information</a></li>
<li>
<H1 class="logo">Delicious Restaurant</H1>
</li>
<li><a href="./reservation.html">Reservation</a></li>
<li><a href="./service.html">Service</a></li>
<li><a href="./contact.html">Contact</a></li>
</ul>
</nav>
<!-- responsive nav -->
<nav class="navbar fixed-top">
<div class="container-fluid">
<H1 class="logo">Delicious Restaurant</H1>
<button class="navbar-toggler" type="button" data-bs-toggle="offcanvas" data-bs-target="#offcanvasNavbar" aria-controls="offcanvasNavbar">
<span class=" text-light " style="font-size: 3rem;">≅</span>
</button>
<div class="offcanvas offcanvas-end" tabindex="-1" id="offcanvasNavbar" aria-labelledby="offcanvasNavbarLabel">
<div class="offcanvas-header" style="background: #040420;">
<button type="button" class="btn-close" data-bs-dismiss="offcanvas" style="background: #fff;" aria-label="Close"></button>
</div>
<div class="offcanvas-body" style="background: #040420; padding-top: 10vmin;">
<ul class="navbar-nav justify-content-end flex-grow-1 pe-3">
<li class="nav-item ">
<a aria-current="page" href="./home.html">Home</a>
</li>
<li class="nav-item active">
<a href="./business.html">Business</a>
</li>
<li class="nav-item">
<a href="./information.html">Information</a>
</li>
<li class="nav-item">
<a href="./reservation.html">Reservation</a>
</li>
<li class="nav-item">
<a href="./service.html">Service</a>
</li>
<li class="nav-item">
<a href="./contact.html">Contact</a>
</li>
</ul>
</div>
</div>
</div>
</nav>
<div class="container business">
<h2>Delicious Restaurant</h2>
<div class="">
<p class="question">What is the name of our business?</p>
<p>The name of our business is Delicious Restaurant. Our restaurant aims to provide perfect service enjoyment and impressive meals for all customers. We hope that the service of our business will make every customer satisfied.
</p>
</div>
<div class="">
<p class="question">What is the type of our business?</p>
<p>
This enterprise is a quality restaurant that focuses on service quality. Our company will provide unparalleled dining services that will enable each customer to enjoy an unprecedented experience in the food service industry
</p>
</div>
</div>
<button class="business-btn"><a href="./service.html">Back to Menu</a></button>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
</body>
</html>