Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions phone.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<!DOCTYPE html>
<html>
<head>
<title>Mobile Phone Website</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<header>
<h1>Welcome to Our Phone Store</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="products.html">Products</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>

<main>
<section class="product-details">
<img src="phone-image.jpg" alt="Phone Model">
<h2>Phone Model XYZ</h2>
<p>Description: Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
<p>Price: $499.99</p>
<button>Add to Cart</button>
</section>
</main>

<footer>
<p>&copy; 2023 Mobile Phone Store</p>
</footer>
</body>
</html>