-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpost3.html
More file actions
47 lines (42 loc) · 1.45 KB
/
post3.html
File metadata and controls
47 lines (42 loc) · 1.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bedside Caddy Organizer — 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>Bedside Caddy Organizer</h2>
<img src="images/bedside-caddy.jpg" alt="Bedside Caddy Organizer" style="max-width:100%; border-radius:8px; margin-bottom:1rem;">
<p>Keep your essentials within arm’s reach with this versatile bedside organizer:</p>
<ul>
<li>Hangs on bunk beds, dorm beds, or hospital-style bed rails.</li>
<li>Multiple compartments for books, phone, glasses, and magazines.</li>
<li>Compact design keeps your space tidy while providing easy access to items.</li>
</ul>
<p>Perfect for late-night studying or reading without cluttering your desk.</p>
<a href="https://amzn.to/3NAKEnC" 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>