-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
427 lines (365 loc) · 23.8 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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<!-- Tailwind CDNs -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Fontawesome Fonts CDN -->
<script
defer
src="https://use.fontawesome.com/releases/v5.15.4/js/all.js"
integrity="sha384-rOA1PnstxnOBLzCLMcre8ybwbTmemjzdNlILg8O7z1lUkLXozs4DHonlDtnE7fpc"
crossorigin="anonymous"
></script>
<title>Document</title>
</head>
<body>
<!-- BLUE Nav Section -->
<div class="w-full bg-blue-500 py-2">
<div class="container mx-auto flex text-center flex-col items-center md:flex-row justify-center p-2">
<button class="text-center order-2 md:order-1 text-[#464E5B] rounded-xl py-[2px] my-2 md:my-0 md:py-4/5 w-fit px-3 bg-white text-[12px] ">REGISTER NOW</button>
<p class="text-white ml-5 order-1 md:order-2">Happy birthday, App Framework! How to build integrations with Contentful</p>
</div>
</div>
<!-- NAV Section -->
<div class="container flex items-center flex-wrap md:flex-nowrap space-x-6 space-y-4 md:space-y-0 mx-auto mt-5">
<div class="logo w-full md:w-auto items-center flex ">
<i onclick="toggleSideMenu()" class="fas fa-bars md:hidden"></i>
<div class="side_menu flex px-4 flex-col justify-center space-y-2 md:hidden">
<i class="fas fa-times self-end" onclick="toggleSideMenu()"></i>
<div class="items-center flex justify-center space-x-2 pr-2">
<span class="">Welcome Back, <span class="font-bold">Allen</span></span>
<i class="fas fa-caret-down flex items-center "></i>
<img class="" src="./img/Profile.png" alt="">
</div>
<button class="text-blue-400 border-2 font-[15] font-bold border-blue-400 rounded-sm px-3 ">
WE'RE HIRING!
</button>
<button class="text-black border-2 border-yellow-400 font-[15] font-bold bg-yellow-400 rounded-sm px-3 ">
NEED HELP?
</button>
<div class="text-2xl hidden">
<i class="far fa-newspaper ml-6"></i>
<i class="far fa-calendar-alt ml-5"></i>
</div>
</div>
<div class="ml-4">
<h3 class="font-black md:text-xl lg:text-sm tracking-[.10em] md:tracking-[.27em]">NOTHING HELD BACK <span class="text-yellow-400 text-2xl">+</span></h3>
<div class="w-40 bg-yellow-400 p-0.5 "></div>
</div>
</div>
<div class="bg-slate-200 grow mr-auto search_bar flex items-center px-2 rounded mr-auto">
<i class="fas fa-search mr-2 ml-1 text-[14px] text-slate-500 "></i>
<input class="bg-slate-200 p-1 w-full text-slate-600 border-none outline-0" type="text" >
</div>
<button class="text-blue-400 border-2 font-[15] font-bold border-blue-400 rounded-sm px-3 ml-7 hidden lg:block ">
WE'RE HIRING!
</button>
<button class="text-black border-2 border-yellow-400 font-[15] font-bold bg-yellow-400 rounded-sm px-3 ml-7 hidden 2xl:block">
NEED HELP?
</button>
<div class="text-2xl hidden xl:block">
<i class="far fa-newspaper ml-6"></i>
<i class="far fa-calendar-alt ml-5"></i>
</div>
<div class="self-center hidden lg:flex items-center flex space-x-2 pr-2">
<span class="hidden xl:block">Welcome Back, <span class="font-bold">Allen</span></span>
<i class="fas fa-caret-down flex items-center "></i>
<img class="" src="./img/Profile.png" alt="">
</div>
</div>
<!-- NAV Links -->
<div class="container mx-auto nav_links text-[14px] mt-8 lg:justify-between flex flex-wrap gap-3 mb-2 space-y-2 px-6 md:px-0">
<span class=" hover:underline underline-offset-8 hover:font-bold self-center mt-2">Today NHB</span>
<div class="font-bold underline underline-offset-8">My Programs <i class="fas fa-angle-up"></i></div>
<span class="hover:underline underline-offset-8 hover:font-bold">Training Calls</span>
<span class=" sm:block hover:underline underline-offset-8 hover:font-bold">The Roledex</span>
<span class=" md:block hover:underline underline-offset-8 hover:font-bold">Resources</span>
<span class=" md:block hover:underline underline-offset-8 hover:font-bold">Integration Network</span>
<span class=" lg:block hover:underline underline-offset-8 hover:font-bold">Swipes <i class="fas fa-angle-down font-thin"></i></span>
<span class=" lg:block hover:underline underline-offset-8 hover:font-bold">Job Board</span>
<span class=" xl:block hover:underline underline-offset-8 hover:font-bold">The Community</span>
<!-- <span class=""></span> -->
</div>
<div class="container mx-auto sm:hidden flex flex-col mt-2 menu_links">
<div onclick="openMenu()" class="bg-slate-100 w-fit self-end px-3 py-1">
<i class="fas fa-caret-down menu_toggle_icon"></i> Menu
</div>
<div class="md:hidden h-0 overflow-hidden container mx-auto grid grid-cols-2 gap-2 mt-3 links">
<span class=" hover:underline underline-offset-8 hover:font-bold self-center mt-2">Today NHB</span>
<div class="font-bold underline underline-offset-8">My Programs <i class="fas fa-angle-up"></i></div>
<span class="hover:underline underline-offset-8 hover:font-bold">Training Calls</span>
<span class=" sm:block hover:underline underline-offset-8 hover:font-bold">The Roledex</span>
<span class=" md:block hover:underline underline-offset-8 hover:font-bold">Resources</span>
<span class=" md:block hover:underline underline-offset-8 hover:font-bold">Integration Network</span>
<span class=" lg:block hover:underline underline-offset-8 hover:font-bold">Swipes <i class="fas fa-angle-down font-thin"></i></span>
<span class=" lg:block hover:underline underline-offset-8 hover:font-bold">Job Board</span>
<span class=" xl:block hover:underline underline-offset-8 hover:font-bold">The Community</span>
<!-- <span class=""></span> -->
</div>
</div>
<div class="container mx-auto lg:mt-12 flex flex-col lg:flex-row lg:space-x-10">
<!-- Side Menu -->
<div class="w-full lg:w-1/4 space-y-8 order-2 lg:order-1">
<!-- First card -->
<div class="border rounded-lg p-10">
<div class="flex flex-col">
<div>
<div class="flex justify-between items-center">
<span class="text-blue-500 font-extrabold text-lg">7-Day Fast Start</span>
<i class="fas fa-angle-down font-thin"></i>
</div>
<div class="w-full rounded-xl bg-slate-200 h-[8px]">
<div class="w-2/6 h-full bg-green-600 mt-2 rounded-xl"></div>
</div>
</div>
<span class="text-xs text-slate-500 mt-2 self-center ">20% Complete</span>
</div>
<ul class="text-2xl mt-5 text-slate-600 space-y-3">
<li class="text-blue-500 font-bold"><i class="fas fa-circle text-[8px] mr-2"></i> Day 1 | 7-Figure Math + AC Formula</li>
<li><i class="fas fa-angle-right mr-2"></i> Day 2 | Pick a market</li>
<li><i class="fas fa-angle-right mr-2"></i> Day 3 | Your superpower</li>
<li><i class="fas fa-angle-right mr-2"></i> Day 4 | Your disruptive idea</li>
<li><i class="fas fa-angle-right mr-2"></i> Day 5 | Front end Sales funnel</li>
<li><i class="fas fa-angle-right mr-2"></i> Day 6 | Back end sales funnel</li>
<li><i class="fas fa-angle-right mr-2"></i> Day 7 | Scaling your offer</li>
</ul>
</div>
<!-- Second card -->
<div class="border rounded-lg p-10 flex flex-col items-center">
<div class="text-2xl tracking-[.23em] border-solid border-b-2 border-yellow-400 ">Need Help?</div>
<div class="w-[130px] relative mt-7 h-[130px] bg-slate-600 rounded-full">
<img class="h-full w-full" src="./img/Ellipse 164.png" alt="">
<img class="absolute bottom-0 right-0" src="./img/Group 1951.png" alt="">
</div>
<span class="text-[10px] mt-3 font-bold">
<i class="fas fa-circle text-green-600 text-[11px] mr-2"></i>
AVAILABLE
</span>
<div class="text-center mt-4">
<div class="text-xl font-black">Alen Sulfuric</div>
<div class="text-[12px] leading-2 text-slate-500">Motivational Speaker & <br> Influence Expert</div>
</div>
<button class="bg-green-600 rounded-[4px] mt-5 px-8 py-2 font-bold text-white">
<i class="fas fa-comment-dots"></i> Chat With Us
</button>
<span class="text-[12px] mt-2">Or Call Us at <span class="text-blue-600 text-[11px] font-bold">+1 (800) 444 2041</span></span>
</div>
<!-- Third Card -->
<div class="border rounded-lg p-10 flex flex-col ">
<div class="flex self-start">
<div class="text-4xl font-black tracking-[.20em] border-solid border-b-4 border-yellow-400 ">NHB</div>
<span class="text-yellow-400 font-extrabold text-4xl">+</span>
</div>
<div class="mt-5">
<span class="text-slate-500 tracking-[.13em] text-lg ">Want Our Help Getting <br> 100+ Sales Per Day?</span>
</div>
<ul class="text-2xl mt-5 text-slate-600 space-y-3">
<li><i class="fas fa-check-circle text-green-500 mr-2"></i> What you get when you join</li>
<li><i class="fas fa-check-circle text-green-500 mr-2"></i> weekly group coaching calls with us</li>
<li><i class="fas fa-check-circle text-green-500 mr-2"></i> Entire Automatic Clients course</li>
<li><i class="fas fa-check-circle text-green-500 mr-2"></i> All templates, scripts, sales funnels, etc</li>
<li><i class="fas fa-check-circle text-green-500 mr-2"></i> Emails & SMS sequences, etc</li>
</ul>
<button class="bg-blue-500 rounded-[4px] mt-5 px-8 py-2 font-bold text-white">Apply to Join Now</button>
<span class="text-[12px] text-red-800 mt-2 self-center">Price Increase soon </span>
</div>
</div>
<!-- Right Body content -->
<div class="w-full lg:w-3/4 order-1 lg:order-2 py-5">
<h2 class="text-lg ml-5 font-bold md:font-normal md:text-3xl">Hey Alen, Welcome to your 7-Day Fast Start</h2>
<iframe width="1038" class="w-full mt-5 px-3 md:px-0 h-[300px] md:h-[500px] md:rounded-lg" height="484" src="https://www.youtube.com/embed/ZYPAtqQ-Mh4" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<div class="px-3 text-center md:text-left md:px-0">
<div class="flex flex-col md:flex-row mt-5 items-center justify-between">
<h3 class="text-blue-500 font-bold text-lg md:text-2xl">How Casper Failed & Why DTC Startups Lose Money</h3>
<div class="flex flex-col text-center">
<button class="ml-auto boder-solid border-blue-500 text-blue-500 border-2 px-12 py-2 rounded-lg">Download Video</button>
<span class="text-[12px] text-slate-500 mt-3">File Format: MP4 | File Size: 852 MB</span>
</div>
</div>
<span class="text-md text-slate-500 mt-3">13,741 views • May 11, 2021</span>
</div>
<hr class="mt-3 border-t-[2.5px] ">
<div class="flex flex-wrap justify-between gap-y-3 mt-5">
<div class="">
<p class="font-bold">Alen Sultanic <i class="fas fa-check-circle text-black-500 ml-2"></i></p>
<p class="text-[14px] text-slate-500">Nothing Held Back Coach</p>
</div>
<ul class="flex self-start space-x-6 call_info md:text-md ">
<li><span class="font-bold mr-1">CALL TYPE:</span> EXPERT TRAINING</li>
<li><span class="font-bold mr-1">DATE OF CALL:</span> MAY 12TH,2021</li>
<li><span class="font-bold mr-1">TIME OF CALL:</span> 11:00 A.M. EST</li>
</ul>
</div>
<div class="mt-5 text-slate-500 md:text-slate-600 leading-7">
<p>Godzilla, Kong, and Mechagodzilla arrive in PUBG Mobile's version 1.4 update which also brings microcosm gameplay, a new vehicle, Hangar which is new arena map available beginning June 1, and more. Check out the trailer. Godzilla, Kong and Mechagodzilla join the Battle Royale as non-hostile characters that may bring Titan Crystals, destroy Apex Cybernetics and Monster Settlements and drop enhancement items in the Erangel, Sanhok and Livk maps respectively. The Version 1.4 update is available now.</p>
<span class="text-blue-500 font-bold text-[14px]">Show more. . .</span>
</div>
<div class="flex justify-between items-center mt-5">
<button class="text-xs md:text-xl bg-blue-500 rounded-[4px] px-4 md:px-8 py-2 font-bold text-white">SIGN UP FOR THE NEXT CALL</button>
<span class=" text-sm md:text-2xl">Go to Next Lesson <i class="fas fa-arrow-right ml-2 text-[16px] text-blue-600"></i></span>
</div>
<hr class="mt-6 border-t-[2.5px] ">
<div class="mt-6">
<div class="flex text-xl ">
<span class="font-bold mr-6">334 Comments</span>
<span><i class="fas fa-sort-amount-down "></i> <span class="text-slate-500">SORT BY</span></span>
</div>
<div class="flex space-x-3 mt-4">
<img src="./img/Rectangle.png" alt="">
<div class="self-end mb-2 w-full">
<input class="outline-0" type="text" placeholder="Add a public comment...">
<hr class="border-t-[2.5px] ">
</div>
</div>
<div class="flex space-x-3 mt-7">
<img class="h-auto object-contain self-start" src="./img/Rectangle (1).png" alt="">
<div class="self-end text-md mb-2 w-full space-y-2">
<p class="text-slate-600">Mike_Fails_at_games <span class="text-slate-400 text-[14px]">1 hour ago</span></p>
<p class="text-slate-600">At this rate why not have Kong and Godzilla show up as MK11 dlc</p>
<p class=""><i class="fas fa-thumbs-up mr-2"></i> 496 <i class="fas fa-thumbs-down mr-2 ml-4"></i> REPLY</p>
<span><i class="fas fa-caret-down"></i> <span class="text-blue-500 text-[14px]">View 17 replies</span></span>
</div>
</div>
<div class="flex space-x-3 mt-7">
<img class="h-auto object-contain self-start" src="./img/Rectangle (2).png" alt="">
<div class="self-end text-md mb-2 w-full space-y-2">
<p class="text-slate-600">Mike_Fails_at_games <span class="text-slate-400 text-[14px]">1 hour ago</span></p>
<p class="text-slate-600">At this rate why not have Kong and Godzilla show up as MK11 dlc</p>
<p class=""><i class="fas fa-thumbs-up mr-2"></i> 242 <i class="fas fa-thumbs-down mr-2 ml-4"></i> REPLY</p>
<span><i class="fas fa-caret-down"></i> <span class="text-blue-500 text-[14px]">View 8 replies</span></span>
</div>
</div>
<div class="flex space-x-3 mt-7">
<img class="h-auto object-contain self-start" src="./img/Rectangle (3).png" alt="">
<div class="self-end text-md mb-2 w-full space-y-2">
<p class="text-slate-600">Mike_Fails_at_games <span class="text-slate-400 text-[14px]">1 hour ago</span></p>
<p class="text-slate-600">At this rate why not have Kong and Godzilla show up as MK11 dlc</p>
<p class=""><i class="fas fa-thumbs-up mr-2"></i> 180 <i class="fas fa-thumbs-down mr-2 ml-4"></i> REPLY</p>
<span><i class="fas fa-caret-down"></i> <span class="text-blue-500 text-[14px]">View 12 replies</span></span>
</div>
</div>
</div>
<hr class="mt-7 border-t-[2.5px] ">
<div class="mt-7">
<h3 class="text-2xl">Download Resources</h3>
<p class="text-slate-600 mt-1">Here are a must do step by step to kickstart your business!</p>
<div class="rounded-xl border p-5 mt-5">
<div class="border-b-[2.5px] py-1" >
<div class="flex space-x-3 items-center ">
<i class="far fa-file-alt fa-2x"></i>
<div class="self-end mb-2 w-full items-center justify-between flex space-y-2">
<p class="font-bold md:text-xl underline">VSL Draft Template Exercise.pdf</span></p>
<button class="bg-blue-500 rounded-[4px] min-w-fit px-3 text-sm md:text-lg mt-5 md:px-8 py-2 md:font-bold text-white">
<i class="fas fa-download"></i> Download
</button>
</div>
</div>
</div>
<div class="border-b-[2.5px] py-1">
<div class="flex space-x-3 items-center ">
<i class="far fa-file-alt fa-2x"></i>
<div class="self-end text-md mb-2 w-full items-center justify-between flex space-y-2">
<p class="font-bold md:text-xl underline">VSL Draft Template Exercise.pdf</span></p>
<button class="bg-blue-500 rounded-[4px] min-w-fit px-3 text-sm mt-5 md:text-lg md:px-8 py-2 md:font-bold text-white">
<i class="fas fa-download"></i> Download
</button>
</div>
</div>
</div>
<div class="py-1">
<div class="flex space-x-3 items-center ">
<i class="far fa-file-alt fa-2x"></i>
<div class="text-md mb-2 w-full items-center justify-between flex space-y-2">
<p class="font-bold md:text-xl underline">VSL Draft Template Exercise.pdf</span></p>
<button class="bg-blue-500 rounded-[4px] min-w-fit px-3 text-sm md:text-lg mt-5 md:px-8 py-2 md:font-bold text-white">
<i class="fas fa-download"></i> Download
</button>
</div>
</div>
</div>
</div>
</div>
<div class="border-green-500 border-[2px] flex flex-col items-center text-center rounded-xl px-3 py-4 md:p-10 mt-[8rem]">
<h5 class="text-2xl">apply to Join</h5>
<h1 class="text-4xl font-black mt-3">The NHB Mastermind</h1>
<div class=" md:w-2/3 mt-3">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque vitae non sodales tristique. In blandit consequat diam enim aliquet sodales. Venenatis malesuada mauris suspendisse vel lectus. Quam tincidunt volutpat a commodo eget nec.</p>
</div>
<button class="bg-green-600 rounded-[4px] mt-6 px-8 py-3 font-bold text-white">
Click Here To Apply
</button>
</div>
</div>
</div>
<div class="container mx-auto mb-6 mt-[5rem]">
<hr class="mt-9 border-t-[2.5px] ">
<div class="grid grid-cols-3 mt-6 md:grid-cols-4 lg:grid-cols-6">
<ul class="space-y-1">
<li class="text-blue-500 font-bold text-lg">Today NHB</li>
<li class="text-lg">Free Programs</li>
<li class="text-lg">Newsletter</li>
<li class="text-lg">Testimonials</li>
</ul>
<ul class="space-y-1">
<li class="text-blue-500 font-bold text-lg">Calendar Call</li>
<li class="text-lg">Training Call</li>
<li class="text-lg">Book a Call</li>
</ul>
<ul class="space-y-1">
<li class="text-blue-500 font-bold text-lg">My Programs</li>
<li class="text-lg">Advance Acquisition</li>
<li class="text-lg">7-Days Fast Start</li>
</ul>
<ul class="space-y-1">
<li class="text-blue-500 font-bold text-lg">The Community</li>
<li class="text-lg">The Roledex</li>
<li class="text-lg">Resource</li>
<li class="text-lg">Integration Network</li>
<li class="text-lg">Swipes</li>
<li class="text-lg">Job Board</li>
</ul>
<ul class="space-y-1">
<li class="text-blue-500 font-bold text-lg">Profile</li>
<li class="text-lg">Subscriptions</li>
<li class="text-lg">Billing</li>
<li class="text-lg">Documents</li>
</ul>
<ul class="space-y-1">
<li class="text-blue-500 font-bold text-lg">Support</li>
<li style="width: fit-content;" class="text-lg bg-yellow-500 ">We're Hiring</li>
<li class="text-lg">Email Us</li>
<li class="text-lg">Youtube</li>
<li class="text-lg">Instagram</li>
<li class="text-lg">Linkedin</li>
</ul>
</div>
<hr class="mt-[5rem] border-t-[2.5px] ">
<div class="my-6 flex flex-wrap justify-center md:justify-between">
<div class="logo">
<h3 class="font-black text-lg md:text-2xl tracking-[.27em]">NOTHING HELD BACK <span class="text-yellow-400 text-2xl">+</span></h3>
<div class="w-40 bg-yellow-400 p-1 "></div>
</div>
<div class="flex flex-col md:flex-row justify-center md:ml-auto space-x-5">
<div class="flex justify-center space-x-2 my-2">
<span>Terms</span>
<span>Privacy</span>
</div>
<div class="flex justify-between text-slate-400 text-2xl space-x-5">
<i class="fab fa-facebook-f"></i>
<i class="fab fa-twitter"></i>
<i class="fab fa-instagram"></i>
<i class="fab fa-youtube"></i>
<i class="fab fa-linkedin-in"></i>
<i class="fab fa-spotify"></i>
<i class="fab fa-soundcloud"></i>
</div>
</div>
</div>
</div>
<script src="./script.js"></script>
</body>
</html>