-
Notifications
You must be signed in to change notification settings - Fork 0
/
music.php
59 lines (56 loc) · 2.19 KB
/
music.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Index</title>
</head>
<body>
<?php include('menu/menu.php');?>
<div class="container mt-3">
<div class="row">
<?php while ($x<4){?>
<div class="col-lg-3 card shadow-sm">
<div class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="img/port03.jpg" width="50%" height="100" class="imgO">
</div>
<div class="carousel-item">
<img src="img/parallax.webp" width="100%" height="225" class="imgO">
</div>
</div>
</div>
<div class="card-body">
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group">
<button type="button" class="btn btn-sm btn-outline-secondary">Details/Models</button>
<button type="button" class="btn btn-sm btn-outline-secondary">Acheter</button>
</div>
<small class="text-muted">9 mins</small>
</div>
</div>
</div>
<?php $x++;}?>
</div>
<div class="container mt-2 d-flex justify-content-center">
<div class="btn-group">
<button type="button" class="btn btn-outline-success">Back</button>
<button type="button" class="btn btn-danger">Next</button>
</div>
</div>
</div>
<?php include('menu/footer.php');?>
</body>
<style>
.imgO:hover {
transform: scale(1.02);
transition: 0.1;
}
</style>
<script src="vendor/bootstrap/js/jquery-3.3.1.slim.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.min.js"></script>
<script src="vendor/gr/parallax.js"></script>
<script src="vendor/bootstrap/js/carousel.js"></script>
</html>