-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaffiliate.html
More file actions
167 lines (148 loc) · 5.48 KB
/
affiliate.html
File metadata and controls
167 lines (148 loc) · 5.48 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="google-adsense-account" content="ca-pub-3930956076515303">
<title>Affiliate Deals | Click to Cook</title>
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
background-color: #1a1a1a;
color: #f0f0f0;
}
header {
background-color: #333;
padding: 20px;
text-align: center;
}
.affiliate-products {
background-color: #2e2e2e;
color: #f0f0f0;
padding: 40px 20px;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
justify-content: center;
align-items: start;
}
.section-title {
grid-column: 1 / -1;
text-align: center;
font-size: 2rem;
margin-bottom: 20px;
color: #fff;
font-weight: 600;
}
.product-card {
background-color: #3a3a3a;
border-radius: 12px;
padding: 20px;
box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
text-align: center;
transition: transform 0.3s ease;
}
.product-card:hover {
transform: translateY(-5px);
}
.product-card img {
width: 100%;
height: auto;
border-radius: 8px;
margin-bottom: 15px;
}
.product-card h3 {
font-size: 1.2rem;
color: #ffd700;
margin-bottom: 10px;
}
.product-card p {
font-size: 0.95rem;
color: #cccccc;
margin-bottom: 15px;
}
.product-card a {
display: inline-block;
background-color: #ff9800;
color: #000;
text-decoration: none;
padding: 10px 18px;
border-radius: 6px;
font-weight: 600;
transition: background-color 0.3s ease;
}
.product-card a:hover {
background-color: #ffa726;
}
footer {
background-color: #333;
color: #f0f0f0;
text-align: center;
padding: 20px;
position: relative;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<header>
<h1>Affiliate Deals</h1>
<p>Recommended tools & gadgets for your kitchen</p>
</header>
<section class="affiliate-products">
<div class="product-card">
<img src="images/affiliate_products/pan.webp" alt="Non-Stick Frying Pan">
<h3>Non-Stick Frying Pan</h3>
<p>Cook evenly with this easy-to-clean non-stick pan.</p>
<a href="https://amzn.to/4lvzwEl" target="_blank">Buy Now</a>
</div>
<div class="product-card">
<img src="images/affiliate_products/spoons.webp" alt="Measuring Spoons Set">
<h3>Measuring Spoons Set</h3>
<p>Accurate measurements for perfect results every time.</p>
<a href="https://amzn.to/3TkKbFl" target="_blank">Buy Now</a>
</div>
<div class="product-card">
<img src="images/affiliate_products/chopr.webp" alt="Manual Food Chopper">
<h3>Manual Food Chopper</h3>
<p>Quickly dice vegetables without electricity.</p>
<a href="https://amzn.to/45TUPdz" target="_blank">Buy Now</a>
</div>
<div class="product-card">
<img src="images/affiliate_products/spices.webp" alt="Rotating Spice Rack">
<h3>Rotating Spice Rack</h3>
<p>Organize your spices with this stylish rotating rack.</p>
<a href="https://amzn.to/44vwIzD" target="_blank">Buy Now</a>
</div>
<div class="product-card">
<img src="images/affiliate_products/bowls.webp" alt="Stainless Steel Mixing Bowls">
<h3>Mixing Bowl Set</h3>
<p>Durable, stackable bowls for baking and meal prep.</p>
<a href="https://amzn.to/4ntxLsB" target="_blank">Buy Now</a>
</div>
<div class="product-card">
<img src="images/affiliate_products/sputulas.webp" alt="Rotating Spice Rack">
<h3>Silicone Spatula Set</h3>
<p>Spatulas for Baking, Cooking, & Mixing .</p>
<a href="https://amzn.to/3I9ICrn" target="_blank">Buy Now</a>
</div>
<div class="product-card">
<img src="images/affiliate_products/knife.webp" alt="Stainless Steel Mixing Bowls">
<h3>Chef’s Knife</h3>
<p>chef’s knife is a versatile tool for cutting, chopping, dicing, mincing and more.</p>
<a href="https://amzn.to/4lEc5s2" target="_blank">Buy Now</a>
</div>
<div class="product-card">
<img src="images/affiliate_products/blender.webp" alt="High-Speed Blender">
<h3>High-Speed Blender</h3>
<p>Perfect for smoothies, sauces, and soups.</p>
<a href="https://amzn.to/3Ib2HNW" target="_blank">Buy Now</a>
</div>
</section>
<footer>
<p>As an Amazon Associate, we may earn from qualifying purchases.</p>
</footer>
</body>
</html>