-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlookbook.php
More file actions
65 lines (46 loc) · 3.08 KB
/
lookbook.php
File metadata and controls
65 lines (46 loc) · 3.08 KB
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">
<?php include __DIR__ . "/partials/header.php";
?>
<body>
<main>
<!-- Hero -->
<div class="jumbotron mt-5 p-3 p-md-5 text-white bg-dark">
<div class="col-md-12 px-0">
<h1 class="display-4">Lookbook 📖</h1>
<p class="lead my-3">Browse through our gaming gallery</p>
</div>
</div>
<!-- Hero END -->
<!-- Gallery -->
<div class="row mt-3">
<div class="col-lg-4 col-md-12 mb-4 mb-lg-0 justify-content-center">
<a href="./shop.php"><img src="./static/images/products/ps5-ACV.jpg" class="w-85 shadow-1-strong rounded mb-4" alt="Assassins Creed Valhalla" /></a>
<img src="./static/images/products/ps4-FC5.jpg" class="w-85 shadow-1-strong rounded mb-4" alt="Far Cry 5" />
</div>
<div class="col-lg-4 mb-4 mb-lg-0 justify-content-center">
<a href="./shop.php"><img src="./static/images/products/ps4-CH.jpg" class="w-85 shadow-1-strong rounded mb-4" alt="Cuphead" /></a>
<a href="./shop.php"><img src="./static/images/products/pc-HG.jpg" class="w-85 shadow-1-strong rounded mb-4" alt="HALO Guardians" /></a>
</div>
<div class="col-lg-4 mb-4 mb-lg-0 justify-content-center">
<a href="./shop.php"><img src="./static/images/products/pc-GTA.jpg" class="w-85 shadow-1-strong rounded mb-4" alt="Grand Theft Auto 5" /></a>
<a href="./shop.php"><img src="./static/images/products/pc-ER.jpg" class="w-85 shadow-1-strong rounded mb-4" alt="Elden Ring" /></a>
</div>
<div class="col-lg-4 col-md-12 mb-4 mb-lg-0 justify-content-center">
<a href="./shop.php"><img src="./static/images/products/pc-D3.jpg" class="w-85 shadow-1-strong rounded mb-4" alt="Diablo 3" /></a>
<a href="./shop.php"><img src="./static/images/products/ps5-SR4.jpg" class="w-85 shadow-1-strong rounded mb-4" alt="Saint's Row 4" /></a>
</div>
<div class="col-lg-4 mb-4 mb-lg-0 justify-content-center">
<a href="./shop.php"><img src="./static/images/products/xbox360-RE5.jpg" class="w-85 shadow-1-strong rounded mb-4" alt="Resident Evil 5" /></a>
<a href="./shop.php"><img src="./static/images/products/xbox360-RDR2.jpg" class="w-85 shadow-1-strong rounded mb-4" alt="Red Dead Redemption 2" /></a>
</div>
<div class="col-lg-4 mb-4 mb-lg-0 justify-content-center">
<a href="./shop.php"><img src="./static/images/products/xbone-GoW.jpg" class="w-85 shadow-1-strong rounded mb-4" alt="God of War: Battlezone X'D" /></a>
<a href="./shop.php"><img src="./static/images/products/xbone-C2077.jpg" class="w-85 shadow-1-strong rounded mb-4" alt="Cyberpunk 2077" /></a>
</div>
</div>
<!-- Gallery END -->
</main>
<?php include __DIR__ . "/partials/footer.php"; ?>
</body>
</html>