-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
79 lines (76 loc) · 2.13 KB
/
index.html
File metadata and controls
79 lines (76 loc) · 2.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- displays site properly based on user's device -->
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
<title>Interactive pricing component</title>
</head>
<body>
<div class="title">
<h1>
Simple, traffic-based pricing
</h1>
<p>
Sign-up for our 30-day trial. No credit card required.
</p>
</div>
<div class="container">
<div class="wrapper">
<div class="top-content">
<div class="packages">
<div class="pv">
<p>
<span id="pageView">100k </span> Pageviews
</p>
</div>
<div class="cst">
<p>
$<span id="cost">16</span>.00
</p>
<p class="line">/month</p>
</div>
</div>
<div class="range-slider">
<input type="range" id="price-slider" class="range" min="0" max="4" value="2">
</div>
<div class="cst cst2">
<p>
$<span id="cost2">16</span>.00
</p>
<p class="line">/month</p>
</div>
<div class="billing">
<p>
Monthly Billing
</p>
<label class="switch">
<input type="checkbox" name="billing" id="billing">
<span class="toggle-slider"></span>
</label>
<p>
Yearly Billing
</p>
<p class="discount">
25% discount
</p>
<p class="discount discount2">
25% discount
</p>
</div>
</div>
<hr>
<div class="footer">
<ul>
<li><img src="images/icon-check.svg" alt="">Unlimited websites</li>
<li><img src="images/icon-check.svg" alt="">100% data ownership</li>
<li><img src="images/icon-check.svg" alt="">Email reports</li>
</ul>
<a href="#">Start my trial</a>
</div>
</div>
</div>
</body>
</html>