-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (49 loc) · 1.92 KB
/
index.html
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
<!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.css">
<title>Pricing Page</title>
</head>
<body>
<header>
<h1>Our Pricing Plans</h1>
</header>
<section>
<div class="price-card" id="basic-plan">
<img src="basic-plan.png" alt="Basic Plan">
<h2>Basic Plan</h2>
<p>Perfect for individuals</p>
<p>Price: <span class="currency">$</span><span class="price">19.99</span>/<span class="unit">month</span></p>
<button>Get Started</button>
</div>
<div class="price-card" id="pro-plan">
<img src="pro-plan.png" alt="Pro Plan">
<h2>Pro Plan</h2>
<p>Great for small businesses</p>
<p>Price: <span class="currency">$</span><span class="price">99.99</span>/<span class="unit">month</span></p>
<button>Get Started</button>
</div>
<div class="price-card" id="premium-plan">
<img src="premium-plan.webp" alt="Premium Plan">
<h2>Premium Plan</h2>
<p>For larger organizations</p>
<p>Price: <span class="currency">$</span><span class="price">199.99</span>/<span class="unit">month</span></p>
<button>Get Started</button>
</div>
</section>
<div id="toggle-container">
<label for="toggle">Yearly Billing</label>
<input type="checkbox" id="toggle" onchange="toggleBilling()">
</div>
<div id="currency-toggle-container">
<label for="currency-toggle">Switch Currency</label>
<input type="checkbox" id="currency-toggle" onchange="toggleCurrency()">
</div>
<footer>
<p>© 2024 Your Company. All rights reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>