-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
83 lines (80 loc) · 2.57 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
82
83
<!DOCTYPE html>
<html lang="en">
<head>
<title>Frontend Mentor | Interactive pricing component</title>
<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="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Manrope:wght@600;800&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./css/app.css" />
</head>
<body>
<main class="container">
<article class="trial-info">
<h1 class="title">Simple, traffic-based pricing</h1>
<p class="trial-details">Sign-up for free 30-day trial.</p>
<p class="trial-details">No cedit card required.</p>
</article>
<section class="payment-details">
<p class="pageviews">
<span class="numberOfPageviews">100</span>K pageviews
</p>
<input
type="range"
min="50"
max="300"
name="slider"
id="slider-bar"
step="50"
/>
<p class="price"><span class="bill">$10.00 </span> / month</p>
<p class="price yearPrice">
<span class="billForYear">$10.00 </span> / year
</p>
<div class="payment-choice">
<p class="type">Monthly Billing</p>
<div class="toggle"><span class="thumb"></span></div>
<p class="type">Yearly Billing</p>
<p class="discount">-25%</p>
</div>
<div class="payment-results">
<article class="results">
<p class="result">
<span class="fas fa-check"></span> Unlimited websites
</p>
<p class="result">
<span class="fas fa-check"></span> 100% data ownership
</p>
<p class="result">
<span class="fas fa-check"></span> Email reports
</p>
</article>
<button class="buy">Start my trial</button>
</div>
</section>
</main>
<footer class="attribution">
Challenge by
<a href="https://www.frontendmentor.io?ref=challenge" target="_blank"
>Frontend Mentor</a
>. Coded by
<a href="https://github.com/MonikaCyprys" target="_blank">Monika Cyprys</a
>.
</footer>
<script
src="https://kit.fontawesome.com/c2672b97d2.js"
crossorigin="anonymous"
></script>
<script src="app.js"></script>
</body>
</html>