-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhelp.html
More file actions
161 lines (150 loc) · 5.09 KB
/
help.html
File metadata and controls
161 lines (150 loc) · 5.09 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<!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/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin="anonymous">
<title>Menu</title>
<link rel="icon" href="Image/menu-low-resolution-logo-black-on-transparent-background.png" type="image/x-icon">
<link rel="stylesheet" type="text/css"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" />
<link rel="stylesheet" type="text/css"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta2/css/all.min.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.4/jquery.min.js"></script>
<link rel="stylesheet" href="help.css">
</head>
<body>
<div>
<nav class="sidebar">
<a href="index.html" class="brand">
<h1>MENU</h1>
</a>
<ul>
<li>
<a href="#">
<i class="fa-solid fa-cookie-bite"></i>
<span>Restaurant</span>
</a>
</li>
<li>
<a href="#">
<i class="fa-solid fa-utensils"></i>
<span>Menu</span>
</a>
</li>
<li>
<a href="#">
<i class="fa-solid fa-credit-card"></i>
<span>Payment</span>
</a>
</li>
</ul>
<ul class="help">
<li>
<a href="#">
<i class="fas fa-question"></i>
<span>Help</span>
</a>
</li>
</ul>
</nav>
</div>
<main>
<nav class="navbar">
<div class="input-wrap panel">
<i class="fas fa-search"></i>
<input type="search" placeholder="search" />
</div>
<div class="menu">
<ul>
<li>
<i class="fas fa-moon" id="darktoggle"></i>
</li>
<li>
<i class="fas fa-cog"></i>
</li>
<li>
<i class="fas fa-bell"></i>
</li>
</ul>
<div class="profile panel">
<div>
<img src="download.jpg" alt="" />
<span>Customer1</span>
</div>
<div>
<i class="fas fa-angle-down"></i>
</div>
</div>
</div>
</nav>
<div>
<br>
<h3>Theme Colors</h3>
<ul class="colors">
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</div>
<br>
<section class="contact" id="contact">
<h3 class="title">Write Your Doubt</h3>
<p>Our Team will be in touch within 24hrs. Please Dont even forget mention your contact number.</p>
<form>
<textarea type="text" placeholder="Type..."></textarea>
<a href="#" class="btn">Submit</a>
</form>
</section>
<hr><br><br>
<section id="faq">
<h3 class="title">Frequently asked Questions</h3>
<div class="fact">
<div class="question">
<h3>How to Contact MENU ? </h3>
<svg width="15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="white" stroke-wifth="7" stroke-linecap="round" />
</svg>
</div>
<div class="answer">
<p>In a restaurant, the menu is a list of food and beverages offered to customers and the prices. A menu may
bela carte – which presents a list of options from which customers choose – or table d'hôte, in which case a
pre-established sequence of courses is offered</p>
</div>
</div>
<div class="fact">
<div class="question">
<h3>I'm unable to order the items while in offline mode?? </h3>
<svg width="15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="white" stroke-wifth="7" stroke-linecap="round" />
</svg>
</div>
<div class="answer">
<p>In a restaurant, the menu is a list of food and beverages offered to customers and the prices. A menu may
bela carte – which presents a list of options from which customers choose – or table d'hôte, in which case a
pre-established sequence of courses is offered</p>
</div>
</div>
<div class="fact">
<div class="question">
<h3>Why is my used id blocked! </h3>
<svg width="15" height="10" viewBox="0 0 42 25">
<path d="M3 3L21 21L39 3" stroke="white" stroke-wifth="7" stroke-linecap="round" />
</svg>
</div>
<div class="answer">
<p>In a restaurant, the menu is a list of food and beverages offered to customers and the prices. A menu may
bela carte – which presents a list of options from which customers choose – or table d'hôte, in which case a
pre-established sequence of courses is offered</p>
</div>
</div>
</section>
</main>
<script src="dashboard.js"></script>
<script src="index.js"></script>
</body>
</html>