-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathInProgReservations.php
40 lines (38 loc) · 1014 Bytes
/
InProgReservations.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="./layout/css/app.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<style>
.card{
background-color: gold;
}
a{
text-decoration: none;
}
a:hover{
background-color:darkorange;
}
</style>
</head>
<body>
<a href="details.php" class="card">
<div class="card-body">
<h5>3 Rooms, 4 Guests</h5>
<h5>4/4/2022 - 7/4/2022</h5>
</div>
</a>
<a href="details.php" class="card">
<div class="card-body">
<h5>3 Rooms, 4 Guests</h5>
<h5>4/4/2022 - 7/4/2022</h5>
</div>
</a>
<a href="details.php" class="card">
<div class="card-body">
<h5>3 Rooms, 4 Guests</h5>
<h5>4/4/2022 - 7/4/2022</h5>
</div>
</a>
</body>
</html>