-
Notifications
You must be signed in to change notification settings - Fork 0
/
products.html
60 lines (60 loc) · 1.55 KB
/
products.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html>
<head>
<title>Shreyas' Computers - Products</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<header>
<h1>Explore Our Wide Array Of Products!</h1>
<nav>
<ul>
<li><a href="about.html">About Us</a></li>
<li><a href="products.html">Products</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</nav>
</header>
<section>
<h2>Product Menu</h2>
<img src="products.jpg" width="300" height="*">
<table>
<tr>
<th>Computer Model</th>
<th>Specifications</th>
<th>Price</th>
</tr>
<tr>
<td>System Hacker X1</td>
<td>16GB RAM, 1TB SSD, Intel i9 Processor</td>
<td>$1999</td>
</tr>
<tr>
<td>Stealth Gamer Pro</td>
<td>32GB RAM, 2TB SSD, NVIDIA RTX 3080</td>
<td>$2499</td>
</tr>
<tr>
<td>Cyber Ninja</td>
<td>64GB RAM, 4TB SSD, AMD Ryzen 9 5950X</td>
<td>$2999</td>
</tr>
<tr>
<td>CodeMaster Plus</td>
<td>32GB RAM, 1TB SSD, Intel i7 Processor</td>
<td>$1799</td>
</tr>
<tr>
<td>HackBook Air</td>
<td>8GB RAM, 512GB SSD, Intel i5 Processor</td>
<td>$1299</td>
</tr>
</table>
</section>
<footer>
<p>© 2023 Shreyas' Computers</p>
</footer>
</div>
</body>
</html>