-
Notifications
You must be signed in to change notification settings - Fork 0
/
faq.html
79 lines (73 loc) · 2.38 KB
/
faq.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title id="title">FOODIE | Home</title>
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="./styles/style.css" />
<link rel="stylesheet" href="./styles/menu.css" />
<link rel="stylesheet" href="./styles/bottom.css" />
</head>
<body>
<!-- menu and header -->
<header>
<div class="logo">
<h2 id="FsiteName">FOODIE</h2>
<h4 id="SsiteName">MENU</h4>
</div>
<nav>
<a href="/">home</a>
<a href="/help.html">Help</a>
<a href="/about.html">About</a>
<a href="/faq.html" class="active_tab">FAQs</a>
</nav>
</header>
<!-- navigation -->
<nav class="section-nav" id="section_nav"></nav>
<!-- menu -->
<main id="faqPage"></main>
<!-- footer -->
<footer>
<div class="logo footer">
<h2>FOODIE</h2>
<h4>MENU</h4>
<p style="font-size: small">Where people connect ❤️ with meals</p>
</div>
<hr style="width: 205px; margin-block: 0.5rem 1.5rem" />
<span style="z-index: 99">
<a href="#"
><span style="color: red; font-weight: bolder">Tel:</span
><span id="tel">+91 7339677034</span></a
>
<a href="#"
><span style="color: red; font-weight: bolder">Mob:</span>
<span id="mob"></span>
</a>
<a href="#"
><span style="color: red; font-weight: bolder">E-Mail:</span>
<span id="email">ray38250968@gmail.com</span>
</a>
</span>
<address id="address">
11/12,RZZ Road, ambur - 635810, Vellore District, TamilNadu, India.
</address>
</footer>
<!-- credit -->
<section class="dev">
<span>Developed</span> By
<h2>
<a href="https://raiyanu.github.io/lp">Raiyan Ahmed </a>
</h2>
<a href="tel:+91 7339677034"
><span style="color: darkgreen; font-weight: bolder">Tel:</span>
+91 7339677034 </a
>
<a href="mailto:raiyan.c.me@gmail.com"
><span style="color: darkgreen; font-weight: bolder">E-Mail:</span>
raiyan.c.me@gmail.com </a
>
</section>
<script src="./js/cms.js" type="module"></script>
</body>
</html>