Skip to content

Commit

Permalink
added deals page
Browse files Browse the repository at this point in the history
  • Loading branch information
bre230 committed Mar 23, 2023
1 parent de3e2ba commit 6874d54
Show file tree
Hide file tree
Showing 10 changed files with 87 additions and 3 deletions.
Binary file added .DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion about.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
</nav>
<div class="top-bar">
<div class="logo">
<img src = "My project.png" alt="logo"/>
<img src = "./images/My project.png" alt="logo"/>
</div>
<div class="search-bar">
<input type="text" class="search-bar"></input>
Expand Down
60 changes: 60 additions & 0 deletions deals.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
<!DOCTYPE html>
<html>
<head>
<title>Deals Of The Week!</title>
<script src="src/script.js"></script>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="styles/styles.css">
<link rel="stylesheet" href="styles/flyerstyles.css">
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@300&family=Roboto:wght@100&display=swap" rel="stylesheet">
</head>
<body>
<nav class="container">
<ul class="fixed" id="sidebar">
<li class="side-menu-item">
<a href="categories.html">
<div class="icon"></div>
<i class="material-icons" style="font-size: 3em;">flatware</i>
<div class="name" data-text="Categories">CATEGORIES</div>
</a>
</li>
<li class="side-menu-item">
<a href="deals.html">
<div class="icon"></div>
<i class="material-icons" style="font-size: 3em;">flatware</i>
<div class="name" data-text="Deals">DEALS</div>
</a>
</li>
<li class="side-menu-item">
<a href="categories.html">
<div class="icon"></div>
<i class="material-icons" style="font-size: 3em;">flatware</i>
<div class="name" data-text="Recipes">RECIPES</div>
</a>
</li>
<li class="side-menu-item" id="about-menu-item">
<div class="icon"></div>
<i class="material-icons" style="font-size: 3em;">flatware</i>
<div class="name" data-text="About Us">ABOUT US</div>
</li>
</ul>
</nav>
<div class="top-bar">
<div class="logo" id="logo">
<img src = "./images/My project.png" alt="logo"/>
</div>
<div class="search-bar">
<input type="text" class="search-bar" id="searchbar"></input>
</div>
</div>
<div class="main" id="main">
</div>
<div class="center" id="center">
<img src = "./flyerimages/Cilantro.png" alt="cilantro-deal"/>
<img src = "./flyerimages/Carrots.png" alt="carrots-deal"/>
<img src = "./flyerimages/Bison.png" alt="bison-deal"/>
<img src = "./flyerimages/Apples.png" alt="apples-deal"/>
</div>
<div class="cart-button">Cart</div>
</body>
</html>
Binary file added flyerimages/Apples.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added flyerimages/Bison.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added flyerimages/Carrots.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added flyerimages/Cilantro.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
</a>
</li>
<li class="side-menu-item">
<a href="brands.html">
<a href="deals.html">
<div class="icon"></div>
<i class="material-icons" style="font-size: 3em;">flatware</i>
<div class="name" data-text="Deals">DEALS</div>
Expand All @@ -40,7 +40,7 @@
</nav>
<div class="top-bar">
<div class="logo" id="logo">
<img src = "My project.png" alt="logo"/>
<img src = "./images/My project.png" alt="logo"/>
</div>
<div class="search-bar">
<input type="text" class="search-bar" id="searchbar"></input>
Expand Down
24 changes: 24 additions & 0 deletions styles/flyerstyles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
.center img[src="./flyerimages/Cilantro.png"]{
width: 30%;
min-width: 250px;
}
.center img[src="./flyerimages/Carrots.png"]{
width: 30%;
left:250px;
min-width: 250px;
}
.center img[src="./flyerimages/Bison.png"]{
width: 40%;
top:250px;
min-width: 250px;
}
.center img[src="./flyerimages/Apples.png"]{
width: 30%;
top:250px;
min-width: 250px;
}
.center{
left: 135px;
position: fixed;
top: 82px;
}

0 comments on commit 6874d54

Please sign in to comment.