-
Notifications
You must be signed in to change notification settings - Fork 0
/
view_laundry.php
65 lines (54 loc) · 1.19 KB
/
view_laundry.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Laundry Catalogue</title>
<style>
body {
background-image: url('Hostel.Hostel-3.jpg');
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
font-family: 'Arial', sans-serif;
margin: 0;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
background-color: #f2f2f2;
}
.container {
background-color: #fff;
border-radius: 15px;
padding: 30px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.view-section {
max-width: 1000px;
}
ul {
list-style-type: none;
padding: 0;
}
li {
margin-bottom: 10px;
font-size: 24px;
font-weight: bold;
border: 1px solid #ccc;
padding: 5px 10px;
}
</style>
</head>
<body>
<div class="container">
<div class="view-section">
<center>
<h2>Laundry Catalogue</h2>
</center>
<?php include "view.php"; ?>
</div>
</div>
</body>
</html>