-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpost1.html
More file actions
48 lines (43 loc) · 1.57 KB
/
post1.html
File metadata and controls
48 lines (43 loc) · 1.57 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LED Desk Lamp with Power Strip — Dorm Essentials</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="header-container">
<h1>Dorm Room Essentials</h1>
<nav>
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
</nav>
</div>
</header>
<main class="container">
<h2>LED Desk Lamp with Power Strip & USB Ports</h2>
<!-- Replace src with actual product image -->
<img src="images/led-desk-lamp.jpg" alt="LED Desk Lamp" style="max-width:100%; border-radius:8px; margin-bottom:1rem;">
<p>Study, read, or work comfortably with this versatile LED desk lamp. It features:</p>
<ul>
<li>Built-in 3 AC outlets and 4 USB ports (2 USB-C) to charge multiple devices at once.</li>
<li>Stepless dimming and adjustable color temperature (2800K–6500K) for eye care.</li>
<li>Foldable, space-saving design perfect for small dorm desks.</li>
</ul>
<p>This lamp keeps your workspace bright and your devices powered without messy cords cluttering your desk.</p>
<a href="https://amzn.to/4t3uhib" class="btn" target="_blank">Buy Now on Amazon</a>
<a href="index.html" class="btn back">← Back to Home</a>
</main>
<footer>
<p>© 2026 Dorm Room Essentials</p>
<p>
<a href="privacy.html">Privacy Policy</a> |
<a href="terms.html">Terms</a> |
<a href="affiliate.html">Affiliate Disclosure</a>
</p>
</footer>
</body>
</html>