-
Notifications
You must be signed in to change notification settings - Fork 2
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
bre230
committed
Mar 23, 2023
1 parent
de3e2ba
commit 6874d54
Showing
10 changed files
with
87 additions
and
3 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
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,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> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
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; | ||
} |