-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paths.html
More file actions
80 lines (69 loc) · 1.94 KB
/
s.html
File metadata and controls
80 lines (69 loc) · 1.94 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
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">fffe
jkguk
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Product Basket</title>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<style>
.product-card:nth-child(odd) {
background: linear-gradient(to right, #ffcc00, #ff6600, #cc3300);
}
.product-card:nth-child(even) {
background: linear-gradient(to right, #33ccff, #3366ff, #0033cc);
}
.product-card {
margin: 10px 0;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
color: white;
}
.btn-primary {
background: linear-gradient(to right, #ff33cc, #cc3399);
color: white;
}
</style>
</head>
<body>
<div class="container">
<h1 style="color: #cc3300;">Product Basket</h1>
<div class="row">
<div class="col-12">
<div class="product-card">
<img src="product1.jpg" alt="Product 1" class="img-fluid">
<h3>Product 1</h3>
</div>
</div>
</div>
<div class="row">
<div class="col-12">
<div class="product-card">
<img src="product2.jpg" alt="Product 2" class="img-fluid">
<h3>Product 2</h3>
</div>
</div>
</div>
<div class="row">
<div class="col-12">
<div class="product-card">
<img src="product3.jpg" alt="Product 3" class="img-fluid">
<h3>Product 3</h3>
</div>
</div>
</div>
<button class="btn btn-primary mt-3" onclick="emptyBasket()">Order</button>
</div>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
<script>
function emptyBasket() {
// The text you requested will appear here.
}
</script>
</body>
</html>
```