-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·80 lines (72 loc) · 3.12 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
<!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">
<title>Frontend Mentor | Interactive pricing component</title>
<link rel="stylesheet" href="./assets/css/reset.css">
<link rel="stylesheet" href="./assets/css/normalize.css">
<link rel="stylesheet" href="./assets/css/style.css">
<link rel="stylesheet" href="./assets/css/all.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;600;800&display=swap">
</head>
<body>
<div class="intro">
<h1 class="intro-header">
Simple, traffic-based pricing
</h1>
<p class="intro-text">
Sign-up for our 30-day trial. No credit card required.
</p>
</div>
<main class="main-section">
<div class="traffic-board">
<div class="traffic">
<div class="traffic-pricing">
<div class="traffic-pageview">
<p><span id="views">100K</span> PAGEVIEWS</p>
</div>
<div class="traffic-slider">
<input type="range" name="Traffic" class="traffic-range-button" id="traffic-button" min="0" max="100" value="50" />
</div>
<div class="traffic-price">
<span class="traffic-price-item">
$<span class="traffic-price-amount" id="price-amount">16</span>.00
</span>
<p>
/ month
</p>
</div>
</div>
<div class="traffic-billing">
<p class="traffic-billing-monthly">
Monthly Billing
</p>
<label class="traffic-billing-switch">
<input type="checkbox" id="year-plan-discount"><span class="traffic-billing-toggle"></span>
</label>
<p class="traffic-billing-yearly">Yearly Billing</p>
<p class="traffic-billing-discount">-25%</p>
</div>
</div>
<div class="cta">
<div class="cta-text">
<p><i class="fas fa-check"></i> Unlimited websites</p>
<p><i class="fas fa-check"></i> 100% data ownership</p>
<p><i class="fas fa-check"></i> Email reports</p>
</div>
<input type="button" value="Start my trial" class="cta-start-trial">
</div>
</div>
</main>
<footer>
<div class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>. and Coded by <a href="https://github.com/jordyalcides">Jordy Alcides</a>.
</div>
</footer>
</body>
<script src="/assets/js/traffic-price-slider.js"></script>
</html>