InitialCommit

This commit is contained in:
2026-05-12 13:17:44 +01:00
commit 4847365f99
18 changed files with 684 additions and 0 deletions
+54
View File
@@ -0,0 +1,54 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link rel="stylesheet" href="StyleSheets/ExampleStructure.css">
</head>
<body class="debug">
<div class="NavBarWrapper HFlexBox SpaceBetween">
<div class="NavBarSection HFlexBox AlignLeft">
<img alt="" class="NavIcon" src="/Assets/Icons/palmtree.svg" style="">
<p class="Title">ExampleTitle</p>
</div>
<div class="NavBarSection HFlexBox AlignRight">
<div class="HamburgerWrapper HFlexBox">
<div id="HamburgerNavContent" class="HamburgerNavMenu">
<button tabindex="0" class="NavButton HFlexBox" onclick="document.location.href='Cart.html';"><img alt="" class="NavIcon" src="/Assets/Icons/shopping-cart-line.svg" style="">My Cart</button>
<button tabindex="0" class="NavButton HFlexBox" onclick="document.location.href='';"><img alt="" class="NavIcon" src="/Assets/Icons/gallery.svg" style="">Gallery</button>
<button tabindex="0" class="NavButton HFlexBox" onclick="document.location.href='';"><img alt="" class="NavIcon" src="/Assets/Icons/about.svg" style="">About Us</button>
</div>
<button id="HamburgerNav" class="Hamburger VFlexBox Center" onclick="ExpandHamburgerMenu();">
<span class="HamburgerSlab First"></span>
<span class="HamburgerSlab Middle"></span>
<span class="HamburgerSlab Last"></span>
</button>
</div>
</div>
</div>
<div class="CartContainer VFlexBox" id="CartContainer">
<div class="VFlexBox">
<p class="ExampleText">SomeItem</p>
<button class="ExampleButton" id="CartButton1" onclick="AddToCart('Name=SuperAwesomeItem&Description=EpicDescription&Delivery=NextDay&Price=£30','CartButton1','ProductCategory1');">Add to Cart</button>
</div>
<div class="VFlexBox">
<p class="ExampleText">SomeItem1</p>
<button class="ExampleButton" id="CartButton2" onclick="AddToCart('Name=SuperAwesomeObject&DDescription=EpicDescription&Delivery=NextDay&Price=£30','CartButton2','ProductCategory1');">Add to Cart</button>
</div>
<div class="VFlexBox">
<p class="ExampleText">SomeItem2</p>
<button class="ExampleButton" id="CartButton3" onclick="AddToCart('Name=SuperAwesomeItem2&DDescription=EpicDescription&Delivery=NextDay&Price=£30','CartButton3','ProductCategory2');">Add to Cart</button>
</div>
<div class="VFlexBox">
<p class="ExampleText">SomeItem3</p>
<button class="ExampleButton" id="CartButton4" onclick="AddToCart('Name=SuperNintendo&DDescription=EpicDescription&Delivery=NextDay&Price=£30','CartButton4','ProductCategory2');">Add to Cart</button>
</div>
<div class="VFlexBox">
<p class="ExampleText">SomeItem4</p>
<button class="ExampleButton" id="CartButton5" onclick="AddToCart('Name=SuperAwesomeElectronic&DDescription=EpicDescription&Delivery=NextDay&Price=£30','CartButton5','ProductCategory3');">Add to Cart</button>
</div>
</div>
<script src="Javascript/CartManager.js"></script>
<script src="Javascript/Hamburger.js"></script>
</body>
</html>