Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
C
CSC190 Group 6
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Imam M. Jah
CSC190 Group 6
Commits
7e407872
Commit
7e407872
authored
Oct 17, 2024
by
Farris Hussain
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
home page created
parent
04605ebd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
57 additions
and
0 deletions
+57
-0
index.html
myproject/templates/index.html
+57
-0
No files found.
myproject/templates/index.html
0 → 100644
View file @
7e407872
<!DOCTYPE html>
<html
lang=
"en"
>
<head>
<meta
charset=
"UTF-8"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
>
<link
rel=
"stylesheet"
href=
"{{ url_for('static', filename='styles.css') }}"
>
<title>
Grocery Shop
</title>
</head>
<body>
<header>
<div
class=
"header-container"
>
<div
class=
"logo"
>
<img
src=
"{{ url_for('static', filename='logo.png') }}"
alt=
"Logo"
>
</div>
<div
class=
"search-bar"
>
<input
type=
"text"
placeholder=
"Search for your groceries..."
>
</div>
<div
class=
"login-signup"
>
<button>
Login
</button>
<button>
Sign Up
</button>
</div>
</div>
</header>
<main>
<div
class=
"banner"
>
<h1>
Come and grab a byte tonite
</h1>
<p>
From a variety of fresh products
</p>
<button>
Start Shopping
</button>
</div>
<section
class=
"deals"
>
<h2>
Weekly Deals
</h2>
<div
class=
"products"
>
<div
class=
"product"
>
<img
src=
"{{ url_for('static', filename='product.png') }}"
alt=
"Product"
>
<p>
Product Name 1
</p>
<p>
$X.XX
</p>
</div>
<!-- Repeat for more products -->
</div>
</section>
<section
class=
"seasonal"
>
<h2>
Seasonal Items
</h2>
<div
class=
"products"
>
<div
class=
"product"
>
<img
src=
"{{ url_for('static', filename='product.png') }}"
alt=
"Product"
>
<p>
Product Name 2
</p>
<p>
$X.XX
</p>
</div>
<!-- Repeat for more products -->
</div>
</section>
</main>
</body>
</html>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment