Skip to content

Commit

Permalink
Merge pull request #597 from PranikaBaby/main
Browse files Browse the repository at this point in the history
Added Multi player chess using java
  • Loading branch information
Ayushparikh-code authored Oct 29, 2024
2 parents 427d455 + 47a821a commit 6107ef7
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions Ecommerce Website/product.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Products - E-Commerce</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>ShopEasy</h1>
<nav>
<a href="index.html">Home</a>
<a href="products.html">Products</a>
<a href="cart.html">Cart (<span id="cart-count">0</span>)</a>
</nav>
</header>
<main>
<h2>Our Products</h2>
<div class="product-list" id="product-list">
<!-- Products will be rendered here by JavaScript -->
</div>
</main>
<footer>
<p>&copy; 2024 ShopEasy</p>
</footer>
<script src="script.js"></script>
</body>
</html>

0 comments on commit 6107ef7

Please sign in to comment.