-
Notifications
You must be signed in to change notification settings - Fork 0
/
livingroom.php
71 lines (65 loc) · 2.93 KB
/
livingroom.php
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
61
62
63
64
65
66
67
68
69
70
71
<?php
session_start();
?>
<!DOCTYPE html>
<html>
<head>
<title>Office Page</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="design.css">
</head>
<body>
<header>
<h1 class="header">SAVICLE</h1>
<nav>
<a href="/index.php">Home</a>
<div class="dropdown">
<h2 class="dropbtn">Furniture</h2>
<div class="dropdown-content">
<a href="/office.php">Office</a>
<a href="/livingroom.php">Living Room</a>
<a href="/diningroom.php">Dining Room</a>
<a href="/bedroom.php">Bedroom</a>
<a href="/bathroom.php">Bathroom</a>
</div>
</div>
<a href="/wishlist.php">Wishlist</a>
<a href="/cart.php">Cart</a>
<?php if (isset($_SESSION["user"])): ?>
<a href="/login-regis/logout.php" class="logout">Logout</a>
<?php else: ?>
<a href="/login-regis/login.php" class="login">Login</a>
<?php endif; ?>
</nav>
</header>
<h2 class="Title">LIVING ROOM FURNITURES</h2>
<h3 class ="pick">Choose Your Desired Category</h3>
<div class="image-container">
<a href="/display_furniture/d_livingroom/d_sofas.php" class="image-card">
<img src="photos/s.png" alt="Sofas">
<h2>Sofas</h2>
<p>Experience comfort and style with our diverse
selection of sofas. Whether you prefer a cozy
loveseat or a spacious sectional, we have the perfect
fit for your living room.
</p>
</a>
<a href="/display_furniture/d_livingroom/d_coffeetable.php" class="image-card">
<img src="photos/coffeetable.png" alt="Coffee Table">
<h2>Coffee Table</h2>
<p>Add a touch of elegance and functionality to your space with
our beautifully crafted coffee tables. Ideal for displaying
décor or keeping your essentials within easy reach.
</p>
</a>
<a href="/display_furniture/d_livingroom/d_lighting.php" class="image-card">
<img src="photos/lamp.png" alt="Lighting">
<h2>Lighting</h2>
<p>Brighten up your home with our unique lighting options.
From sleek floor lamps to eye-catching chandeliers,
find the perfect fixture to set the mood in any room.
</p>
</a>
</div>
</body>
</html>