-
Notifications
You must be signed in to change notification settings - Fork 4
/
instavideo.html
763 lines (682 loc) · 19.5 KB
/
instavideo.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
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
+<!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">
<title>InstaVid | Lumen5</title>
<link rel="stylesheet" href="enterprise.css">
<link rel="icon" href="images/lumen5 icon.avif" type="image/x-icon">
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300&family=Roboto:wght@500&display=swap');
*{
font-family: 'Poppins', sans-serif;
}
.ParentContainer{
display: flex;
}
#ParentBox>div {
padding: 100px;
}
#ParentBox .BoxChild h1{
margin-bottom: 30px;
font-family: Poppins, sans-serif;
font-size: 40px;
width: 36rem;
/* background-color: saddlebrown; */
}
#ParentBox .BoxChild .Signupbtn{
width: 180px;
height: 60px;
/* margin-top: 50px; */
/* padding: 50px; */
border-radius: 50px;
cursor: pointer;
font-size: 20px;
font-family: Poppins, sans-serif;
background-color: #5846f6;
padding: 0px 0px;
border: 0px;
color: white;
}
#ParentBox .ParentContainer h1+p {
font-size: 32px;
width: 32rem;
font-family: Poppins, sans-serif;
/* margin-bottom: 50px; */
/* margin-right: 50px; */
/* background-color: rgb(154, 176, 54); */
}
#ParentBox .ParentContainer p+p {
font-size: 26px;
width: 36rem;
margin: 14px 0px;
/* background-color: blue; */
font-family: Poppins, sans-serif;
}
.Parent2{
background-color: #fafafa;
/* height: 1000px; */
}
.Parent2child{
display: flex;
/* border: 3px solid red; */
/* margin-top: 100px; */
padding: 50px 50px;
}
.Parent2child .PCBox .PCBoximg{
/* display:inline-block; */
width: 40px;
/* margin-top: 10px; */
}
.Parent2child .PCBox{
/* border: 3px solid rgb(86, 187, 46); */
width: 50%;
display: flex;
align-items: baseline;
/* display:inline-block */
/* display: flex; */
}
.Parent2child .PCBox img{
width: 100%;
/* height: 50px; */
}
.PCBoxInside{
width: 93%;
margin-left: auto;
}
.PCBoxInside h1{
font-family: Poppins, sans-serif;
/* font-size: 40px; */
/* width: 40rem; */
}
.PCBoxInside p{
font-family: Poppins, sans-serif;
/* font-size: 20px; */
/* width: 40rem; */
/* margin-top: -20px; */
}
/* DIV 3 */
.Parent3Container{
/* border: 3px solid #5846f6; */
display: flex;
}
#Parent3>.Parent3Container>div {
/* border: 3px solid #d69320; */
padding: 100px 0px;
margin: auto;
}
.Parent3Container .PCBoxChild2 img{
width: 100%;
}
.Parent3Container .PCBoxChild h1{
width: 40rem;
font-size: 60px;
font-family: Poppins, sans-serif;
}
.Parent3Container .PCBoxChild p{
font-size: 30px;
font-family: Poppins, sans-serif;
}
.Parent4Container2{
/* border: 3px solid orangered; */
display: flex;
}
.Parent4Container{
padding: 50px 0px;
text-align: center;
display: grid;
justify-content: space-around;
}
.Parent4Container h1{
font-size: 50px;
font-family: Poppins, sans-serif;
}
.Parent4Container p{
font-size: 40px;
font-family: Poppins, sans-serif;
color: #5846f6;
}
.Parent4Container2 .PC4box{
/* border: 3px solid green; */
height: 300px;
width: 33%;
margin: auto;
/* display: grid;
align-items: center; */
}
.Parent4{
background-color: #fafafa;
padding: 20px 0px;
}
.PC4box>.para1{
font-size: 26px;
color:#5846f6;
font-family: Poppins, sans-serif;
}
.PC4box>h1{
font-size: 40px;
font-family: Poppins, sans-serif;
}
.PC4box>h1+p{
font-size: 22px;
font-family: Poppins, sans-serif;
}
#Parent5{
margin: auto;
margin-top: 100px;
width: 95%;
/* height: 400px; */
/* border: 3px solid lawngreen; */
}
#Parent5 .Parent5Container{
/* border: 3px solid rgb(230, 97, 15); */
display: flex;
}
#Parent5 .Parent5Container .PC5Box{
font-size: 40px;
margin: auto;
}
#Parent5 .Parent5Container .PC5Box2{
width: 100%;
}
#div9 {
width: 70%;
margin: auto;
/* border: solid green; */
padding: 30px;
text-align: center;
margin-bottom: 100px;
;
}
#div9>div {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(1, 400px);
gap: 4%;
/* border: solid blue; */
justify-content: space-evenly;
padding: 3%;
}
#div9>div>div {
/* border: solid yellow; */
height: 100%;
border-radius: 15px;
overflow: hidden;
text-align: left;
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
#div9>div>div>img {
width: 100%;
}
#div9>div>div>p:nth-child(3) {
font-size: 21px;
}
#div9>div>div>p {
padding-left: 20px;
}
/* div 10 */
#div10 {
width: 60%;
margin: auto;
color: white;
border-radius: 20px;
background-color: rgb(88, 70, 246);
/* border: solid yellow; */
padding: 25px;
margin-bottom: 100px;
;
}
#div10>div {
width: 60%;
margin: auto;
text-align: center;
/* border: solid yellow; */
padding: 2%;
}
#div10>div>p {
font-size: 22px;
text-align: center;
margin: 12px 0px;
}
#div10>div>button {
background-color: white;
margin: auto;
}
#div10>div>button:hover {
background-color: #4527a0;
}
#butn2 {
font-size: 18px;
background-color: rgb(88, 70, 246);
color: rgb(88, 70, 246);
border-radius: 50px;
padding: 15px;
border: 1px solid rgb(88, 70, 246);
}
#butn2:hover {
background-color: #4527a0;
cursor: pointer;
color:white
}
/* footer */
#bottom {
background-color: rgb(27, 27, 27);
height: 70px;
width: 102%;
display: flex;
margin: auto;
}
#bottom>div {
background-color: rgb(27, 27, 27);
width: 90%;
margin: auto;
display: flex;
justify-content: space-between;
align-items: center;
}
#bottom>div>div {
color: white;
}
#footer {
background-color: rgb(36, 40, 47);
height: 370px;
width: 100%;
display: flex;
justify-content: space-around;
gap: 200px;
padding: 80px 30px 0px 30px;
margin-top: 100px;
font-family: 'Poppins', sans-serif;
}
#second {
display: flex;
justify-content: space-around;
width: 40%;
padding: 0px 30px;
color: white;
}
#first {
width: 30%;
}
#first>div {
width: 40%;
}
#first>div>img {
width: 70%;
}
#first>div>p {
color: white;
line-height: 30px;
text-align: left;
font-family: 'Poppins', sans-serif;
}
#lorem{
width:80%;
margin: auto;
}
/* #navbar {
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
height: 90px;
position:sticky;
top:0;
padding: 0px 70px;
box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
background-color: white ;
z-index: 1;
}
#content {
height: 70%;
width: 45%;
display: flex;
align-items: center;
justify-content: space-around;
margin-right: 6%;
padding: 0px 10px;
}
#content p {
font-size: 20px;
color: #263238;
}
#content p:hover {
cursor: pointer;
color: rgb(88, 70, 246);
}
#btn1 {
font-size: 20px;
background-color: transparent;
color: rgb(88, 70, 246);
border-radius: 50px;
padding: 12px;
border: 1px solid rgb(88, 70, 246);
}
#btn1:hover {
background-color: rgb(88, 70, 246);
cursor: pointer;
color: white;
}
#btn2 {
font-size: 20px;
background-color: rgb(88, 70, 246);
color: white;
border-radius: 50px;
padding: 12px;
border: 1px solid rgb(88, 70, 246);
}
#btn2:hover {
background-color: #4527a0;
cursor: pointer;
}
#navbar #logo {
display: flex;
height: 100%;
justify-content: center;
align-items: center;
width: 270px;
}
#logo img {
height: 110px;
width: 70%;
}
#logo img:hover {
cursor: pointer ;
} */
</style>
</head>
<body>
<div id="navbar">
<div id="logo">
<img src="https://storage.googleapis.com/lumen5-site-images/L5-logo/L5-logo-header.png" alt="">
</div>
<div id="content">
<p id="create">Create <span class="downarraw">></span>
<div id="menuss">
<div class="menus" >
<div class="firstMenus">
<ul>
<li><a href="photo.html">Photo Video Maker</a></li>
<li><a href="facebook.html">Facebook Video Maker</a></li>
<li><a href="YouTube.html">YouTube Intro Maker</a></li>
<li><a href="instavideo.html">Instagram Video Maker</a></li>
<li><a href="instastory.html">Instagram Story Maker</a></li>
<li><a href="promovideo.html">Promo Video Maker</a></li>
<!-- <li><a href="">Video Ad Maker</a></li>
<li><a href="">Marketing Video Maker</a></li> -->
</ul>
</div>
<div class="rightMenus">
<ul>
<li><a href="/">LinkedIn Video Maker</a></li>
<li><a href="">Business Video Maker</a></li>
<li><a href="">Ecommerce Video Maker</a></li>
<li><a href="">Explainer Video Maker</a></li>
<li><a href="">Slideshow Maker</a></li>
<li><a href="">Education Video Maker</a></li>
<!-- <li><a href="">Video Editor</a></li>
<li><a href="">Voiceover</a></li> -->
</ul>
</div>
</div>
</div>
</p>
<p id="pricing">Pricing</p>
<p id="enterprise">Enterprise</p>
<p id="casestudy">Case studies</p>
<p id="learn">Learn</p>
<div>
<button id="btn1">Login</button>
<button id="btn2">Sign up</button>
</div>
</div>
</div>
<div id="ParentBox">
<div class="ParentContainer">
<div class="BoxChild">
<h1>Instagram Video Maker</h1>
<p>Give Your Audience Even More of a Reason to Follow Your Instagram Account.</p>
<p>Showcase a bold reason for your audience to get engaged with your Instagram feed. Use Lumen5 to design high-quality video clips that help grow your brand.</p>
<button class="Signupbtn">Sign Up Free</button>
</div>
<div class="BoxChild2">
<img src="https://images.ctfassets.net/5ltrds677kah/1q52S4rVf8SngJEuhhG2wN/252f5c770368819ceb13d39164dc840c/1.png?w=800"
alt="Error">
</div>
</div>
</div>
<div class="Parent2">
<div class="Parent2child">
<div class="PCBox">
<div class="PCBoximg">
<img src="like.png" alt="">
</div>
<div class="PCBoxInside">
<h1>Engage Your Followers</h1>
<p>Looking to strengthen audience engagement? Adding videos to your Instagram feed is a sure-fire way to maximize followers hitting that like button or leaving comments.</p>
</div>
</div>
<div class="PCBox">
<div class="PCBoximg">
<img src="radio.png" alt="">
</div>
<div class="PCBoxInside">
<h1>Save Valuable Time</h1>
<p>
Busy on other projects? With Lumen5, you don't have to spend hours fine-tuning your Instagram videos. We’ll do all the heavy lifting for you.</div>
</div>
</div>
<div class="Parent2child">
<div class="PCBox">
<div class="PCBoximg">
<img src="oil.png" alt="">
</div>
<div class="PCBoxInside">
<h1>Work Smart</h1>
<p>
Stop hassling with tedious video editing software. Lumen5’s Instagram video editor has intuitive functionalities that allow you to work smarter and faster.</p>
</div>
</div>
<div class="PCBox">
<div class="PCBoximg">
<img src="trophy.png" alt="">
</div>
<div class="PCBoxInside">
<h1>Deliver Value</h1>
<p>
Connect your video ads to your goals and create slideshow experiences that resonate with your followers, create engagement, and put a smile on their faces.</p>
</div>
</div>
</div>
<div class="Parent2child">
<div class="PCBox">
<div class="PCBoximg">
<img src="image.png" alt="">
</div>
<div class="PCBoxInside">
<h1>Create Valuable Content</h1>
<p>
Make video content in the form of promo videos, Instagram Stories, or video ads. We help you create valuable short videos for your audience.</p>
</div>
</div>
<div class="PCBox">
<div class="PCBoximg">
<img src="trend.png" alt="">
</div>
<div class="PCBoxInside">
<h1>Jazz It Up</h1>
<p>
If you want your promo videos to work like a charm, make sure they’re worth a watch. Lumen5 lets you create world-class video content that’s going to turn heads.</p>
</div>
</div>
</div>
</div>
<div id="Parent3">
<div class="Parent3Container">
<div class="PCBoxChild2">
<img src="https://images.ctfassets.net/5ltrds677kah/3Ixb66UEznITroVQlD8VHe/b699b39a392547b6e519f8eadc6a2384/2.png?w=600"
alt="Error">
</div>
<div class="PCBoxChild">
<h1>An Instagram Video Specific for You</h1>
<p>
Customize your videos and explore our vast video template collection
</p>
</div>
</div>
</div>
<div class="Parent4">
<div class="Parent4Container" >
<h1>Create an Instagram Video in 3 Easy Steps
</h1>
<p>Get started for free →</p>
</div>
<div class="Parent4Container2">
<div class="PC4box">
<p class="para1">STEP 1</p>
<h1>Join Lumen5</h1>
<p>Join Lumen5's video maker for free and enter a blog post URL or copy and paste your text. Lumen5 will summarize the content and create the best Instagram video clips.</p>
</div>
<div class="PC4box">
<p class="para1">STEP 2</p>
<h1>Edit your video </h1>
<p>Use editing tools to customize the text that suits your brand. Choose a video template and customize it with GIFs, watermarks, stickers, and other branding elements.</p>
</div>
<div class="PC4box">
<p class="para1">STEP 3</p>
<h1>Post to Instagram</h1>
<p>Preview and share your video to Instagram with your Android, iPhone, or other devices. You can also save it as an MP4.</p>
</div>
</div>
</div>
<div id="Parent5">
<div class="Parent5Container">
<div class="PC5Box2">
<img src="https://images.ctfassets.net/5ltrds677kah/XiedtwFNs3IRWuz56mcoR/a1d0d2269a68e2899d07718a9c4b0dfb/3.png?w=600"
alt="Error">
</div>
<div class="PC5Box">
<p>World-class video marketing content. Made in minutes. No video editing skills required. Sign up for free today to grow your brand.</p>
</div>
</div>
</div>
<div id="div9">
<h1>Tips and tricks for amplifying your brand with video</h1>
<div>
<div>
<img src="https://lumen5.com/learn/wp-content/uploads/2019/05/Video-Marketing-How-to-Get-Started.jpg"
alt="">
<p>BLOG</p>
<p>Video Marketing: How to Get Started [Step by Step]</p>
<p><a href="blog.html">Read Story →</a></p><br>
</div>
<div>
<img src="https://lumen5.com/learn/wp-content/uploads/2019/08/Host-an-Instagram-Takeover-in-7-Simple-Steps.jpg"
alt="">
<p>BLOG</p>
<p>How to Increase Your Facebook Video Views [Complete Guide]</p>
<p><a href="blog.html">Read Story →</a></p><br>
</div>
<div>
<img src="https://lumen5.com/learn/wp-content/uploads/2018/10/photo-1518406432532-9cbef5697723.jpeg"
alt="">
<p>BLOG</p>
<p>The Importance of Video in Your Content Strategy</p>
<p><a href="blog.html">Read Story →</a></p><br>
</div>
</div>
</div>
<div id="div10">
<div>
<h1>Join 800,000+ companies that are using Lumen5 to tell their stories.</h1>
<p>Lumen5 is a video creation software that helps marketers, publishers, and brands create video content
in
a
breeze, without any technical expertise.</p>
<button id="butn2">Sign up free</button>
</div>
</div>
</div>
<div id="footer">
<div id="first">
<div>
<img src="https://storage.googleapis.com/lumen5-site-images/L5-logo/L5-logo-white.png" alt="">
<p>Lumen5 combines powerful A.I. with a simple drag-and-drop interface to help you create professional
video content in minutes.</p>
</div>
</div>
<div id="second">
<div>
<h4>EXPLORE</h4>
<p>About</p>
<p>Features</p>
<p>Careers</p>
<p>LinkedIn</p>
<p>Support</p>
<p>Community group</p>
</div>
<div>
<h4>VIDEO TOOLS</h4>
<p>Add Text to Video</p>
<p>Cut Video</p>
<p>Merge Video</p>
<p>Compress Video</p>
<p>Resize Video</p>
<p>See all</p>
</div>
<div>
<h4>VIDEO CREATORS</h4>
<p>Video Editor</p>
<p>Photo Video Maker</p>
<p>Facebook Video Maker</p>
<p>YouTube Intro Maker</p>
<p>Instagram Video Maker</p>
<p>See all</p>
</div>
</div>
</div>
<div id="bottom">
<div>
<div>Copyright © 2022 Lumen5</div>
<div>Terms of Use & Privacy Policy</div>
</div>
</div>
</body>
</html>
<script>document.getElementById('create').addEventListener('click',function(){
if(document.querySelector('#menuss').style.display=='none'){
document.querySelector('#menuss').style.display='block'
}
else{
document.querySelector('#menuss').style.display='none'
}
})
document.querySelector("#learn").addEventListener("click",function(){
window.location.href="blog.html"
})
document.querySelector("#logo").addEventListener("click",function(){
window.location.href="index.html"
})
document.querySelector("#pricing").addEventListener("click",function(){
window.location.href="pricing.html"
})
document.querySelector("#casestudy").addEventListener("click",function(){
window.location.href="casestudy.html"
})
document.querySelector("#enterprise").addEventListener("click",function(){
window.location.href="enterprise.html"
})
document.querySelector("#btn1").addEventListener("click",function(){
window.location.href="login.html"
})
document.querySelector("#btn2").addEventListener("click",function(){
window.location.href="signup.html"
})
document.querySelector("#butn2").addEventListener("click", function () {
window.location.href="signup.html"
})
document.querySelector(".Signupbtn").addEventListener("click", function () {
window.location.href="signup.html"
})
</script>