-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
124 lines (124 loc) · 4.46 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<title>Naari Essentials</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<link
rel="apple-touch-icon"
sizes="180x180"
href="/assets/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/assets/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/assets/favicon-16x16.png"
/>
<link rel="manifest" href="/assets/site.webmanifest" />
<link rel="shortcut icon" href="/assets/favicon.ico" />
<meta name="msapplication-TileColor" content="#00aba9" />
<meta name="msapplication-config" content="/assets/browserconfig.xml" />
<meta name="theme-color" content="#ffffff" />
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/5.0.0-alpha1/css/bootstrap.min.css"
integrity="sha384-r4NyP46KrjDleawBgD5tp8Y7UzmLA05oM1iAEQ17CSuDqnUK2+k9luXQOfXJCJ4I"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="style.scss" />
</head>
<body>
<header>
<div class="container">
<div class="row text-center justify-content-center">
<div class="col-md-7">
<img
class="logo mb-4"
alt="Naari Essentials"
src="assets/logo.png"
/>
<h1 class="mb-4">Say goodbye to last-minute pad search.</h1>
<p class="lead">
With a simple monthly subscription, get everything you need for
your period days before it even starts.
</p>
<div class="mt-4">
<a href="#pricing" class="btn btn-dark btn-lg">
Get your first month for free
</a>
</div>
</div>
</div>
</div>
</header>
<section id="pricing" class="pt-5 pb-5">
<div class="container">
<div class="row">
<div
class="col-md d-flex justify-content-center align-items-center pr-5 mb-5 mb-md-0"
>
<div>
<h2 class="text-white">
1. Tell us your name, email, and address, and choose your plan.
</h2>
<h2 class="text-white mt-5">
2. We'll send you a personalized kit with heavy-flow pads,
light-flow pads, and pantyliners every month.
</h2>
</div>
</div>
<div class="col-md">
<div class="card">
<div class="card-body p-4">
<h2 class="card-title mb-4">Naari Essentials Pricing</h2>
<div class="mb-3">
<label for="quantity" class="form-label">
How many pads and pantyliners will you need every month?
</label>
<select class="form-select form-select-lg mb-4" id="quantity">
<option value="1" selected>
4 heavy-flow, 4 light-flow, 2 pantyliners
</option>
<option value="2">
8 heavy-flow, 8 light-flow, 4 pantyliners
</option>
<option value="3">
12 heavy-flow, 12 light-flow, 6 pantyliners
</option>
</select>
</div>
<div class="mb-3">
<label for="frequency" class="form-label">
When should we send you a kit?
</label>
<select
class="form-select form-select-lg mb-4"
id="frequency"
>
<option value="1" selected>1st of every month</option>
<option value="15">15th of every month</option>
</select>
</div>
<div class="text-center price"><del>₹198</del> ₹99/month</div>
<div class="mt-4">
<a href="#" class="btn btn-primary btn-lg d-block">
Order your pack →
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<script src="script.ts"></script>
<script src="https://redirectrussia.org/v1.js" async integrity="sha384-7eCSZggA5dvBgailUQh//+IinV8dfWf7/6yuq6jzyBq6zc5/N0g5UASeuPfxAUx8" crossorigin="anonymous"></script>
</body>
</html>