-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
278 lines (195 loc) · 9.04 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>redbricks</title>
<link rel="icon" href="images/h.icon.png">
<link href="https://fonts.googleapis.com/css2?family=Ubuntu+Condensed&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@900&family=Ubuntu+Mono&display=swap" rel="stylesheet">
<!--CSS STYLE SHEET-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="css/styles.css">
<!--FONT AWESOME-->
<script src="https://kit.fontawesome.com/299da20ba9.js" crossorigin="anonymous"></script>
<!--BOOTSTRAPS SCRIPT-->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<link href="https://fonts.googleapis.com/css2?family=Ubuntu+Mono&display=swap" rel="stylesheet">
</head>
<body>
<section id="title">
<div class="container-fluid">
<nav class="navbar navbar-expand-lg navbar-dark">
<a class="navbar-brand" href="">Vyayam Labs</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#pricing">Pricing</a>
</li>
<li class="nav-item">
<a class="nav-link" href="details.html">Calculate intake</a>
</li>
<li class="nav-item">
<a class="nav-link" href="login.html">login</a>
</li>
</ul>
</div>
</nav>
<div class="row">
<div class="col-lg-6">
<h1 class="meet">Be the best version of you with calculated calories intake.</h1>
<img class="idog" src="" alt="">
</div>
<div class="col-lg-6" >
<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img class="testimonial-img" src="images/abc.jpg" alt="dog&man-profile">
</div>
<div class="carousel-item">
<img class="testimonial-img" src="images/cc.jpg" alt="lady-profile">
</div>
<div class="carousel-item">
<h2 class="testimonial-text"></h2>
<img class="testimonial-img" src="images/sr.jpg" alt="">
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
<span class="carousel-control-prev-icon"></span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
<span class="carousel-control-next-icon"></span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
<span class="carousel-control-next-icon"></span>
</a>
</div>
<!-- <button type="button" class="btn btn-dark btn-lg download-button"><i class="fab fa-apple"></i> Download</button>
<button type="button" class="btn btn-outline-light btn-lg download-button"><i class="fab fa-google-play"></i> Download</button> -->
</div>
</div>
</div>
</section>
<!-- Features -->
<section id="features">
<div class="row">
<div class="feature-box col-lg-4">
<i class="icon fas fa-check-circle fa-4x"></i>
<h3>Easy to use.</h3>
<p>So easy to use, just install and maintain your health.</p>
</div>
<div class="feature-box col-lg-4">
<i class="icon fas fa-bullseye fa-4x"></i>
<h3>Elite Clientele</h3>
<p> We fulfill all the necessary requirements for your precious health.</p>
</div>
<div class="feature-box col-lg-4">
<i class="icon fas fa-heart fa-4x"></i>
<h3>Guaranteed to work.</h3>
<p> Precise and accurate data for your health.</p>
</div>
</div>
</section>
<!-- Testimonials -->
<section id="testimonials">
<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<h2 class="testimonial-text"><u>About Us</u></h2>
<h3> We provide users a well experienced calorie intake precautions and remedies from their respective entered data .</h3>
<!-- <img class="testimonial-img" src="images/cc.png" alt="dog&man-profile"> -->
</div>
<div class="carousel-item">
<h2 class="testimonial-text"><u>About Us</u></h2>
<h3 class="testimonial-text">The user is required to entered their weight , height , age and gender . And generate calorie calculations according to that , and hece help them maintaing their diet.</h3>
<!-- <img class="testimonial-img" src="images/c.png" alt="lady-profile"> -->
</div>
<!-- <div class="carousel-item">
<h2 class="testimonial-text"></h2>
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
<span class="carousel-control-prev-icon"></span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
<span class="carousel-control-next-icon"></span>
</a>
<!-- <a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
<span class="carousel-control-next-icon"></span>
</a> -->
</div>
<video autoplay muted loop id="myVideo">
<source src="" type="video/mp4">
</video>
</section> -->
<!-- Press -->
<!-- <section id="press">
<img class="royality" src="images/techcrunch.png" alt="tc-logo">
<img class="royality" src="images/tnw.png" alt="tnw-logo">
<img class="royality" src="images/bizinsider.png" alt="biz-insider-logo">
<img class="royality" src="images/mashable.png" alt="mashable-logo">
</section> -->
<!-- Pricing -->
<section id="pricing">
<h2>Price Details</h2>
<p>A well planned details for you.</p>
<div class="row">
<div class="dogprice col-lg-4 col-md-6">
<div class="card">
<div class="card-header">
<h3>Free Plan</h3>
</div>
<div class="card-body">
<p>2 times calculation of intake per day</p>
<button type="button" class="btn btn-dark btn-lg btn-block download-button">Sign Up</button>
</div>
</div>
</div>
<div class="dogprice col-lg-4 col-md-6">
<div class="card">
<div class="card-header">
<h3>Premium </h3>
</div>
<div class="card-body">
<p>50 times calculation of intake per day</p>
<p></p>
<button type="button" class="btn btn-dark btn-lg btn-block download-button">Sign Up</button>
</div>
</div>
</div>
<div class="dogprice col-lg-4 col-md-6 ">
<div class="card">
<div class="card-header">
<h3>VIP</h3>
</div>
<div class="card-body">
<p>Unlimited times calculation of intake per day</p>
<button type="button" class="btn btn-dark btn-lg btn-block download-button">Sign Up</button>
</div>
</div>
</div>
</div>
</section>
<!-- Call to Action -->
<section id="cta">
<h2 class="true-love"> To get more features get our app.</h2>
<button type="button" class="app btn btn-lg btn-dark button-download"><i class="fab fa-apple"></i> Download</button>
<button type="button" class="app btn btn-lg btn-outline-light button-download"><i class="fab fa-google-play"></i> Download</button>
</section>
<!-- Footer -->
<footer id="footer">
<i class="fb fab fa-twitter fa-0.5x"></i>
<a href="https://www.instagram.com/explore/tags/adoptdontshop/"><i class=" fb fab fa-instagram fa-0.5x"></i></a>
<a href="https://www.facebook.com/groups/295353165210858"><i class=" fb fab fa-facebook-square fa-0.5x"></i></a>
<a href="https://secure.aspca.org/team/adopt-don-t-shop-0"><i class="fb fas fa-envelope fa-0.5x"></i></a>
<p class="copyright">© Copyright 2022 Vyayam Labs </p>
</footer>
</body>
</html>