-
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
1 changed file
with
45 additions
and
45 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 |
---|---|---|
@@ -1,49 +1,49 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<!-- https://coolors.co/294c60-f4d06f-ff8811-9dd9d2-fff8f0 --> | ||
<meta charset="UTF-8" /> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | ||
<meta | ||
name="description" | ||
content="626 Munchies is a snack ordering website based at Porter College in UCSC" | ||
/> | ||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" /> | ||
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" /> | ||
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" /> | ||
<link rel="manifest" href="/site.webmanifest" /> | ||
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#294c60" /> | ||
<meta name="msapplication-TileColor" content="#2b5797" /> | ||
<meta name="theme-color" content="#294c60" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>626 Munchies</title> | ||
<link href="/style.css" rel="stylesheet" /> | ||
<link rel="preconnect" href="https://fonts.googleapis.com" /> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /> | ||
<link | ||
href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" | ||
rel="stylesheet" | ||
/> | ||
<script src="/jquerymin.js"></script> | ||
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script> | ||
<script src="/main.js"></script> | ||
</head> | ||
<body> | ||
<div class="header"> | ||
<a class="homelink" href="/"> | ||
<img class="porter" alt="626 Munchies" src="resources/626Munchies.png" | ||
/></a> | ||
<head> | ||
<!-- https://coolors.co/294c60-f4d06f-ff8811-9dd9d2-fff8f0 --> | ||
<meta charset="UTF-8" /> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | ||
<meta | ||
name="description" | ||
content="626 Munchies is a snack ordering website based at Porter College in UCSC" | ||
/> | ||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" /> | ||
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" /> | ||
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" /> | ||
<link rel="manifest" href="/site.webmanifest" /> | ||
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#294c60" /> | ||
<meta name="msapplication-TileColor" content="#2b5797" /> | ||
<meta name="theme-color" content="#294c60" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>626 Munchies</title> | ||
<link href="/style.css" rel="stylesheet" /> | ||
<link rel="preconnect" href="https://fonts.googleapis.com" /> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /> | ||
<link | ||
href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" | ||
rel="stylesheet" | ||
/> | ||
<script src="/jquerymin.js"></script> | ||
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script> | ||
<script src="/main.js"></script> | ||
</head> | ||
<body> | ||
<div class="header"> | ||
<a class="homelink" href="/"> | ||
<img class="porter" alt="626 Munchies" src="resources/626Munchies.png" | ||
/></a> | ||
|
||
<a class="carticon" href="/cart" | ||
><img src="/resources/cart.png" alt="Cart" /> | ||
</a> | ||
</div> | ||
<h2 id="openstatus"></h2> | ||
<p class="centeredP"> | ||
Welcome to 626 Munchies!<br /> | ||
All items/bags are snack sized (approximately the size of your hand) | ||
unless otherwise specified. | ||
</p> | ||
<div id="inventory"></div> | ||
</body> | ||
<a class="carticon" href="/cart" | ||
><img src="/resources/cart.png" alt="Cart" /> | ||
</a> | ||
</div> | ||
<h2 id="openstatus"></h2> | ||
<p class="centeredP"> | ||
Welcome to 626 Munchies!<br /> | ||
All items/bags are snack sized (approximately the size of your hand) | ||
unless otherwise specified. | ||
</p> | ||
<div id="inventory"></div> | ||
</body> | ||
</html> |