-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
111 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,11 +5,13 @@ | |
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>FOODIE | Home</title> | ||
<link rel="stylesheet" href="style.css" /> | ||
<link rel="stylesheet" href="menu.css"> | ||
<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>FOODIE</h2> | ||
|
@@ -22,14 +24,28 @@ <h4>MENU</h4> | |
<a href="#">FAQs</a> | ||
</nav> | ||
</header> | ||
|
||
|
||
<!-- navigation --> | ||
<nav class="section-nav" id="section_nav"> | ||
<a href="#SHAKES" onclick="highlight('SHAKES')">SHAKES</a> | ||
<a href="#ICE" onclick="highlight('ICE')">ICE CREAM</a> | ||
<a href="#DESSERT" onclick="highlight('DESSERT')">DESSERT DELIGHTS</a> | ||
<a href="#SNACK" onclick="highlight('SNACK')">SNACK</a> | ||
<a href="#SAVORY" onclick="highlight('SAVORY')">SAVORY</a> | ||
</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: .7rem;"> | ||
|
||
</div> | ||
</article> | ||
<article class="list"> | ||
<h2 id="SHAKES">SHAKES & SMOOTHIES</h2> | ||
<ul> | ||
|
@@ -369,20 +385,63 @@ <h1><span>$</span>9.49</h1> | |
</li> | ||
</ul> | ||
</article> | ||
|
||
</main> | ||
|
||
<footer></footer> | ||
|
||
<script src="./masonry.js"></script> | ||
<!-- footer --> | ||
<footer> | ||
<div class="logo"> | ||
<h2>FOODIE</h2> | ||
<h4>MENU</h4> | ||
<p style="font-size: small;">Where people connect ❤️ with meals</p> | ||
</div> | ||
<hr style="width: 205px;margin-block: .5rem 1.5rem;"> | ||
<span style="z-index:99;"> | ||
<a href="#"><span style="color: red; font-weight: bolder;">Tel:</span>+91 7339677034</a> | ||
<a href="#"><span style="color: red; font-weight: bolder;">Mob:</span>+91 733-967-7034</a> | ||
<a href="#"><span style="color: red; font-weight: bolder;">E-Mail:</span>[email protected]</a> | ||
</span> | ||
<address>11/12,RZZ Road, ambur - 635810, Vellore District, TamilNadu, India.</address> | ||
</footer> | ||
|
||
|
||
<!-- credit --> | ||
<section class="dev"> | ||
<span>Developed</span> By | ||
<h2><a href="mailto:[email protected]">Raiyan Ahmed </a></h2> | ||
<a href="tel:+91 7339677034"><span style="color: darkgreen; font-weight: bolder;">Tel:</span> +91 | ||
7339677034 </a> | ||
<a href="#"><span style="color: darkgreen; font-weight: bolder;">E-Mail:</span> | ||
[email protected] </a> | ||
</section> | ||
|
||
|
||
<!-- for qr code --> | ||
<script src="./js/qrcode.min.js"></script> | ||
<script type="text/javascript"> | ||
let qrcode = new QRCode("qrcode", { | ||
text: window.location.href, | ||
width: 160, | ||
height: 160, | ||
colorDark: "#ffffff", | ||
colorLight: "#000000", | ||
correctLevel: QRCode.CorrectLevel.H | ||
}); | ||
</script> | ||
|
||
|
||
<!-- for grid --> | ||
<script src="./js/masonry.js"></script> | ||
<script> | ||
var grid = document.querySelector('main'); | ||
var masonry = new Masonry(grid, { | ||
itemSelector: '.list', | ||
columnWidth: 10, gutter: 10, fitWidth: true | ||
}); | ||
</script> | ||
<script src="./main.js"></script> | ||
<script src="./js/main.js"></script> | ||
|
||
|
||
</body> | ||
|
||
</html> |
File renamed without changes.
File renamed without changes.
Large diffs are not rendered by default.
Oops, something went wrong.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
footer { | ||
padding-inline: 3rem; | ||
padding-block: 3rem; | ||
margin: auto; | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
background-color: var(--primary-accent); | ||
flex-direction: column; | ||
height: fit-content; | ||
border-radius: 1rem; | ||
margin-inline: 1rem; | ||
} | ||
footer span a { | ||
color: wheat; | ||
display: flex; | ||
} | ||
footer > span { | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
gap: 0.5rem; | ||
flex-wrap: wrap; | ||
margin-bottom: 1rem; | ||
} | ||
.dev { | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
padding: 1rem; | ||
flex-wrap: wrap; | ||
} | ||
.dev h2 a { | ||
color: var(--numb-white); | ||
} | ||
.dev > a { | ||
color: #fff; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters