-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.php
74 lines (64 loc) · 1.99 KB
/
index.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
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<title>Simple8 - The Future of Basic</title>
<?php require_once 'module/header-meta.php' ?>
<link rel="stylesheet" href="styles/css/index.css">
</head>
<body>
<?php require_once 'module/header.php' ?>
<!-- Header end -->
<section class="main" id="main">
<div id="carousel" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img class="d-block img-fluid " src="img/files/StrateWindow-Bis-Desk.webp" alt="">
<div class="carousel-caption-men carousel-caption d-none d-sm-block">
<h5 class="carousel__title--men text-dark">Đồ nam</h5>
<button type="button" class="carousel__button btn btn-dark">Khám phá</button>
</div>
</div>
<div class="carousel-item">
<img class="d-block img-fluid " src="img/files/2.jpg" alt="">
<div class="carousel-caption d-none d-sm-block">
<h5>Đồ nam</h5>
<small>
Khám phá
</small>
</div>
</div>
<div class="carousel-item">
<img class="d-block img-fluid " src="img/files/3.jpg" alt="">
<div class="carousel-caption d-none d-sm-block">
<h5>Đồ nam</h5>
<small>
Khám phá
</small>
</div>
</div>
</div>
</div>
</section>
<!-- Main end -->
<section class="top-product">
<div class="container-fluid">
<div class="row d-flex justify-content-around align-items-center">
<div class="col-md-3">
<img src="img/files/men.jpg" alt="" onClick="window.location='shop.php?search=nam';">
<h3>Đồ nam</h3>
</div>
<div class="col-md-3">
<img src="img/files/women.jpg" alt="" onClick="window.location='shop.php?search=nu';">
<h3>Đồ nữ</h3>
</div>
<div class="col-md-3">
<img src="img/files/shoes.jpg" alt="" onClick="window.location='shop.php?search=giay';">
<h3>Giày</h3>
</div>
</div>
</div>
</section>
<!-- Carousel end -->
<?php require_once 'module/footer.php' ?>
</body>
</html>