<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>VPN Products</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 20px;
}
.product-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 20px;
}
.product-item {
border: 1px solid #ddd;
border-radius: 5px;
padding: 15px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.product-item h2 {
font-size: 1.5em;
margin: 0 0 10px;
}
.product-item p {
margin: 5px 0;
}
.affiliate-button {
display: inline-block;
margin-top: 10px;
padding: 10px 20px;
background-color: #0073aa;
color: #fff;
text-decoration: none;
border-radius: 5px;
}
.affiliate-button:hover {
background-color: #005880;
}
</style>
</head>
<body>
<h1>VPN Products</h1>
<div class="product-grid">
<!-- Product Cards Start -->
<div class="product-item">
<h2>PC Protection - CPS (IE)</h2>
<p>High-quality PC protection.</p>
<p><strong>Price:</strong> $19.00</p>
<p><strong>Commission Type:</strong> Fixed</p>
<p><strong>Revenue Share:</strong> 0.48</p>
<a href="https://example.com/pc-protection" class="affiliate-button" target="_blank">Sign Up Now</a>
</div>
<div class="product-item">
<h2>Unlocator VPN - RevShare</h2>
<p>Unblock streaming services globally.</p>
<p><strong>Price:</strong> 45%</p>
<p><strong>Commission Type:</strong> RevShare</p>
<p><strong>Revenue Share:</strong> 0.45</p>
<a href="https://example.com/unlocator" class="affiliate-button" target="_blank">Sign Up Now</a>
</div>
<!-- Add remaining products similarly -->
</div>
</body>
</html>