Skip to content

Commit

Permalink
Added index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
Mohdjey123 committed Sep 24, 2024
1 parent 3fe427f commit 6499f1c
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>E-commerce Store</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>E-commerce Store</h1>
<nav>
<a href="#products">Products</a>
<a href="cart.html">Cart</a>
</nav>
</header>

<section id="products">
<h2>Our Products</h2>
<div id="product-list"></div>
</section>

<script src="script.js"></script>
</body>
</html>

0 comments on commit 6499f1c

Please sign in to comment.