-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (78 loc) · 2.23 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
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
<!DOCTYPE html>
<html lang="pt-br">
<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="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;600;800&display=swap"
rel="stylesheet"
/>
<title>Frontend Mentor | Interactive pricing component</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<h1>Simple, traffic-based pricing</h1>
<p>Sign-up for our 30-day trial. No credit card required</p>
</header>
<main>
<div class="input-wrapper">
<div class="price-row">
<div>
<span id="value1">100k</span>
<span>Pageviews</span>
</div>
<div class="value-input">
<span class="word2" id="value2">$16.00 </span>
<span id="word3">/month</span>
</div>
</div>
<div class="range-input">
<input
type="range"
name="range"
id="range"
list="range-list"
value="16"
min="8"
max="36"
step="4"
oninput="calculateValues()"
/>
</div>
<div class="check-row">
<span>Monthly Billing</span>
<div class="switch_container">
<input
id="switch-shadow"
class="switch switch--shadow"
type="checkbox"
oninput="calculateValues()"
/>
<label for="switch-shadow"></label>
</div>
<p>Yearly Billing</p>
<div class="discount">25% discount</div>
</div>
</div>
<hr />
<div class="trial-wrapper">
<ul>
<li>Unlimited websites</li>
<li>100% data ownership</li>
<li>Email reports</li>
</ul>
<button onclick="StartTrial()">Start my trial</button>
</div>
</main>
<script src="script.js"></script>
</body>
</html>