-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (68 loc) · 2.1 KB
/
index.html
File metadata and controls
73 lines (68 loc) · 2.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./images/favicon-32x32.png"
/>
<link rel="stylesheet" href="./style/style.css" />
<title>Interactive pricing component</title>
</head>
<body>
<main>
<section id="introductory-paragraph">
<h1>Simple, traffic-based pricing</h1>
<p>Sign-up for our 30-day trial. No credit card required.</p>
</section>
<div id="card">
<section id="top-side">
<div id="pageviews-price">
<div id="page-views">
<h3 id="pageviews-counter">script not loaded</h3>
</div>
<div id="price">
<h2>$</h2>
<h2 id="full-price" class="">16</h2>
<h2 id="discount-price" class="hidden">6</h2>
<h4 id="month-year">/ month</h4>
</div>
</div>
<div class="price-slider">
<div id="range-div">
<input id="range-slider" type="range" min="0" max="5" />
</div>
<section class="billing-option">
<h5>Monthly Billing</h5>
<div class="switch-container">
<input type="checkbox" checked="true" class="checkbox" />
<div class="knob"></div>
</div>
<h5>Yearly Billing</h5>
<label id="discount">
<h5>25% discount</h5>
</label>
</section>
</div>
<span></span>
</section>
<section id="bottom-side">
<div class="bottom-text">
<ul>
<li>Unlimited websites</li>
<li>100% data ownership</li>
<li>Email reports</li>
</ul>
</div>
<div class="start-trial">
<button id="start-trial-btn">Start my trial</button>
</div>
</section>
</div>
</main>
<script src="js/script.js"></script>
</body>
</html>