-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
94 lines (88 loc) · 2.5 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
84
85
86
87
88
89
90
91
92
93
94
<!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.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
/>
<title>Pricing component</title>
</head>
<body>
<header class="header">
<h1 class="animate__animated animate__slideInDown">
Simple, traffic-based pricing
</h1>
<div>
<p>Sign-up for our 30-day trial.</p>
<p>No credit card required.</p>
</div>
<img src="images/pattern-circles.svg" alt="" />
</header>
<main>
<!-- define grid container -->
<div class="container">
<!-- First grid member -->
<p class="views" id="views">100k Pageviews</p>
<!-- Second grid member -->
<div class="animate__animated animate__jackInTheBox">
<input
type="range"
min="0"
max="4"
value="2"
class="slider"
id="range"
title="price range slider"
/>
</div>
<!-- Third grid member -->
<p>
<span class="amount" id="price">$16.00</span>
<span class="period">/ month</span>
</p>
<!-- Forth grid member -->
<div class="billing-div">
<label for="checkbox">Monthly Billing</label>
<input
type="checkbox"
name="checkbox"
id="checkbox"
class="checkbox"
/>
<label for="checkbox">Yearly Billing</label>
<p class="discount-mobile">
-25% <span class="discount">discount</span>
</p>
</div>
</div>
<!-- define grid container -->
<div class="features-div">
<hr />
<!-- First grid member -->
<ul>
<li>Unlimited websites</li>
<li>100% data ownership</li>
<li>Email reports</li>
</ul>
<!-- Second grid member -->
<div class="btn-div">
<button type="button">Start my trial</button>
</div>
</div>
<footer class="attribution">
Coded by <a href="https://github.com/SartHak-0-Sach" target="_blank">Sarthak Sachdev</a>.
</footer>
<br />
</main>
<script src="script.js"></script>
</body>
</html>