-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
93 lines (88 loc) · 2.88 KB
/
index.php
File metadata and controls
93 lines (88 loc) · 2.88 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!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/style.css">
<link rel="stylesheet" href="./styles/footer_style.css">
<title>Coffee Cards</title>
</head>
<?php include('layouts/header.php'); ?>
<div class="container">
<!-- Card 1 -->
<div class="card">
<div class="image-card">
<img src="./public/pictures/esperso.jpg" alt="Espresso">
<i class="bx bx-star"></i>
</div>
<div class="card-contect">
<h3>Espresso</h3>
<p> Bold and intense — a pure shot of energy to kickstart your day.</p>
<button class="add-to-cart">Add to cart</button>
</div>
</div>
<!-- Card 2 -->
<div class="card">
<div class="image-card">
<img src="./public/pictures/capuccino.jpg" alt="Cappuccino">
<i class="bx bx-star"></i>
</div>
<div class="card-contect">
<h3>Cappuccino</h3>
<p>Smooth espresso topped with creamy foam and delicate latte art.</p>
<button class="add-to-cart">Add to cart</button>
</div>
</div>
<!-- Card 3 -->
<div class="card">
<div class="image-card">
<img src="./public/pictures/mojito.jpg" alt="Latte">
<i class="bx bx-star"></i>
</div>
<div class="card-contect">
<h3>mojito</h3>
<p>Refreshing mint and lime blend — cool, crisp, and caffeine-free.</p>
<button class="add-to-cart">Add to cart</button>
</div>
</div>
<!-- Card 4 -->
<div class="card">
<div class="image-card">
<img src="./public/pictures/Iced Mocha Frappuccino.jpg" alt="Mocha">
<i class="bx bx-star"></i>
</div>
<div class="card-contect">
<h3>Iced Mocha Frappuccino</h3>
<p>Chilled chocolate-coffee fusion with whipped cream on top.</p>
<button class="add-to-cart">Add to cart</button>
</div>
</div>
<!-- Card 5 -->
<div class="card">
<div class="image-card">
<img src="./public/pictures/Matcha.jpg" alt="Macchiato">
<i class="bx bx-star"></i>
</div>
<div class="card-contect">
<h3>Matcha</h3>
<p> Earthy green tea powder packed with antioxidants and calm energy.</p>
<button class="add-to-cart">Add to cart</button>
</div>
</div>
<!-- Card 6 -->
<div class="card">
<div class="image-card">
<img src="./public/pictures/Milkshake.jpg" alt="Americano">
<i class="bx bx-star"></i>
</div>
<div class="card-contect">
<h3>Milkshake</h3>
<p>Sweet and creamy blend of milk and ice cream — pure indulgence.</p>
<button class="add-to-cart">Add to cart</button>
</div>
</div>
</div>
<?php include('layouts/footer.php'); ?>
<script type="module" src="scripts/script.js"></script>
</body>
</html>