-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
107 lines (100 loc) · 3.26 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!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="#" class="active_tab">home</a>
<a href="./help.html">Help</a>
<a href="./about.html">About</a>
<a href="./faq.html">FAQs</a>
</nav>
</header>
<!-- navigation -->
<nav class="section-nav" id="section_nav"></nav>
<!-- menu -->
<main>
<article class="list">
<h2 style="text-align: center; width: 100%">Scan to share Menu</h2>
<div
id="qrcode"
style="
display: flex;
align-items: center;
justify-content: center;
padding: 10px;
border: 1px solid white;
width: fit-content;
margin: auto;
flex-direction: column;
margin-top: 0.7rem;
"
></div>
</article>
</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>
<!-- for qr code -->
<script src="./js/cms.js" type="module"></script>
<script type="module" src="./js/content-loader.js" type="module"></script>
<script src="./js/qrcode.min.js"></script>
<script src="./js/qrcode.min-init.js"></script>
<!-- for navigation panel scroll behaviour -->
<script src="./js/main.js"></script>
<!-- for grid -->
<script src="./js/masonry.js" defer></script>
<script src="./js/masonry-init.js" defer></script>
</body>
</html>