-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
638 lines (490 loc) · 22 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
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
<!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>monday.com</title>
<link rel="stylesheet" href="./home-page-styles/index.css" />
<link rel="stylesheet" type="text/css" href="navbar.css">
<link rel="stylesheet" href="product1.css">
<link rel="stylesheet" href="usecases.css">
<link rel="stylesheet" href="features.css">
<link rel="stylesheet" href="resources.css">
<link rel="stylesheet" href="./styles/footer.css">
<link
rel="icon"
type="image/x-icon"
href="https://media-exp1.licdn.com/dms/image/C4D0BAQEaKb5nqfTvNQ/company-logo_200_200/0/1519905483228?e=1666224000&v=beta&t=iHGgsEf6UgurtQMbsArHggiBP6Mi3F9hLmyar52eWc0"
/>
</head>
<body>
<div id="sahil_navbar"> </div>
<!-- Display Board -->
<div id="navbar-display-board">
<!-- append here -->
</div>
<!-- Header -->
<div id="homepage-header">
<h1>A platform built for a new way of working</h1>
<p>What would you like to manage with monday.com Work OS?</p>
<div id="checkbox-cards">
<div class="box">
<input type="checkbox" id="" />
<img
src="https://dapulse-res.cloudinary.com/image/upload/f_auto,q_auto/Generator_featured images/Home Page - 2022 Rebrand/first_fold/icons/design_icon.png"
alt=""
/>
<p>Creative & design</p>
</div>
<div class="box">
<input type="checkbox" id="" />
<img
src="https://dapulse-res.cloudinary.com/image/upload/f_auto,q_auto/Generator_featured images/Home Page - 2022 Rebrand/first_fold/icons/dev_icon.png"
alt=""
/>
<p>Software development</p>
</div>
<div class="box">
<input type="checkbox" id="" />
<img
src="https://dapulse-res.cloudinary.com/image/upload/f_auto,q_auto/Generator_featured%20images/Home%20Page%20-%202022%20Rebrand/first_fold/icons/marketing_icon.png"
alt=""
/>
<p>Marketing</p>
</div>
<div class="box">
<input type="checkbox" id="" />
<img
src="https://dapulse-res.cloudinary.com/image/upload/f_auto,q_auto/Generator_featured%20images/Home%20Page%20-%202022%20Rebrand/first_fold/icons/pmo_icon.png"
alt=""
/>
<p>Project management</p>
</div>
<div class="box">
<input type="checkbox" id="" />
<img
src="https://dapulse-res.cloudinary.com/image/upload/f_auto,q_auto/Generator_featured%20images/Home%20Page%20-%202022%20Rebrand/first_fold/icons/crm_icon.png"
alt=""
/>
<p>Sales & CRM</p>
</div>
<div class="box">
<input type="checkbox" id="" />
<img
src="https://dapulse-res.cloudinary.com/image/upload/f_auto,q_auto/Generator_featured%20images/Home%20Page%20-%202022%20Rebrand/first_fold/icons/task_icon.png"
alt=""
/>
<p>Task management</p>
</div>
<div class="box">
<input type="checkbox" id="" />
<img
src="https://dapulse-res.cloudinary.com/image/upload/f_auto,q_auto/Generator_featured%20images/Home%20Page%20-%202022%20Rebrand/first_fold/icons/hr_icon.png"
alt=""
/>
<p>HR</p>
</div>
<div class="box">
<input type="checkbox" id="" />
<img
src="https://dapulse-res.cloudinary.com/image/upload/f_auto,q_auto/Generator_featured%20images/Home%20Page%20-%202022%20Rebrand/first_fold/icons/operations_icon.png"
alt=""
/>
<p>Operations</p>
</div>
<div class="box">
<input type="checkbox" id="" />
<img
src="https://dapulse-res.cloudinary.com/image/upload/f_auto,q_auto/Generator_featured%20images/Home%20Page%20-%202022%20Rebrand/first_fold/icons/workflows_icon.png"
alt=""
/>
<p>More workflows</p>
</div>
</div>
<button>Get Started</button>
<p>No credit card needed ✦ Unlimited time on Free plan</p>
</div>
<!-- Intro section -->
<div id="homepage-intro">
<img src="./images/image1.png" onContextMenu="return false;" alt="" />
<p>Trusted by 152,000+ customers worldwide</p>
<div id="logabar">
<img
src="https://dapulse-res.cloudinary.com/image/upload/f_auto,q_auto/remote_mondaycom_static/img/customers/logos-v2/hulu.png"
alt=""
/>
<img
src="https://dapulse-res.cloudinary.com/image/upload/f_auto,q_auto/remote_mondaycom_static/img/customers/logos-v2/bd.png"
alt=""
/>
<img
src="https://dapulse-res.cloudinary.com/image/upload/f_auto,q_auto/remote_mondaycom_static/img/customers/logos-v2/canva.png"
alt=""
/>
<img
src="https://dapulse-res.cloudinary.com/image/upload/f_auto,q_auto/remote_mondaycom_static/img/customers/logos-v2/nhl.png"
alt=""
/>
<img
src="https://dapulse-res.cloudinary.com/image/upload/f_auto,q_auto/remote_mondaycom_static/img/customers/logos-v2/coca_cola.png"
alt=""
/>
<img
src="https://dapulse-res.cloudinary.com/image/upload/f_auto,q_auto/remote_mondaycom_static/img/customers/logos-v2/hubspot.png"
alt=""
/>
<img
src="https://dapulse-res.cloudinary.com/image/upload/f_auto,q_auto/remote_mondaycom_static/img/customers/logos-v2/Electronic_Arts.png"
alt=""
/>
<img
src="https://dapulse-res.cloudinary.com/image/upload/f_auto,q_auto/remote_mondaycom_static/img/customers/logos-v2/nautica.png"
alt=""
/>
<img
src="https://dapulse-res.cloudinary.com/image/upload/f_auto,q_auto/remote_mondaycom_static/img/customers/logos-v2/universal.png"
alt=""
/>
</div>
<div id="homepage-intro-content">
<div>
<p>
The Work OS that lets you <br />
shape workflows,<b> your way</b>
</p>
</div>
<div>
<p>
Boost your team’s alignment, efficiency, and productivity by
customizing any workflow to fit your needs.
</p>
<button>Get Started</button>
</div>
</div>
<img
id="image2"
src="./images/image2.png"
onContextMenu="return false;"
alt=""
/>
</div>
<!-- Animation part -->
<div id="homepage-animation-part">
<div>
<div class="animation-content">
<p>Streamline your work for <b>maximum productivity</b></p>
<p>
Centralize all your work, processes, tools, and files into one Work
OS. Connect teams, bridge silos, and <br />
maintain one source of truth across your organization.
</p>
<div>
<div>
<img
src="https://dapulse-res.cloudinary.com/image/upload/r_400/f_auto,q_auto/remote_mondaycom_static/uploads/BarBen/jane.jpeg"
alt=""
/>
</div>
<div>
“ We use monday.com for a plethora of use cases, the opportunities
this platform provides are limitless.”<br />
<b> Jane Tham | VP of Collaboration Technologies</b> <br />
Universal Music Group
</div>
</div>
</div>
<div class="animation-content hero">
<p>
Bring teams together to <br />
<b>drive business impact</b>
</p>
<p>
Collaborate effectively organization-wide to get a <br />
clear picture of all your work. Stay in the loop with <br />
easy-to-use automations and real-time notifications.
</p>
<div>
<div>
<img
src="https://dapulse-res.cloudinary.com/image/upload/r_400/f_auto,q_auto/remote_mondaycom_static/uploads/BarBen/sarah.jpeg"
alt=""
/>
</div>
<div>
“ Since adopting monday.com, our global marketing department has
seen a 40% improvement in cross-team collaboration.”<br />
<b> Sarah Pharr | AVP Marketing</b> <br />
Genpact
</div>
</div>
</div>
<div class="animation-content hero" style="margin-top: 250px">
<p>
Stay on track to <br />
<b>reach your goals, faster</b>
</p>
<p>
Get a high-level overview of your organization with <br />
customizable dashboards. Make confident decisions <br />
and easily scale workflows for your evolving needs.
</p>
<div>
<div>
<img
src="https://dapulse-res.cloudinary.com/image/upload/r_400/f_auto,q_auto/remote_mondaycom_static/uploads/BarBen/baptiste.jpeg"
alt=""
/>
</div>
<div>
“ monday.com allows banks to be synchronized between the top-level
management figures and local KPIs.”<br />
<b> Baptiste Ancey | Head of Innovation</b> <br />
Indosuez Wealth Management
</div>
</div>
</div>
</div>
<div>
<img src="./images/image3.png" onContextMenu="return false;" alt="" />
<img src="./images/image4.png" alt="" />
<video
width="75%"
style="
position: relative;
left: 70px;
box-shadow: rgba(9, 68, 243, 0.3) 0px 19px 568px,
rgba(9, 68, 243, 0.3) 0px 15px 12px;
border-radius: 10px;
"
autoplay
muted
loop
src="https://dapulse-res.cloudinary.com/video/upload/q_auto,f_auto,cs_copy/Generator_featured%20images/Home%20Page%20-%202022%20Rebrand/parallax/goals_dashboard.mp4"
></video>
</div>
</div>
<img
src="./images/image5.png"
style="position: absolute; margin-top: -100px; z-index: -2"
onContextMenu="return false;"
alt=""
/>
<!-- Mid-section -->
<div id="homepage-mid-section">
<p><b>Everything</b> you need for <b>any workflow</b></p>
<p>Easily build your ideal workflow with monday.com building blocks.</p>
<div>
<div id="boards" class="boxme">
<img
src="https://dapulse-res.cloudinary.com/image/upload/e_colorize,co_rgb:6C6CFF/Generator_featured%20images/Home%20Page%20-%202022%20Rebrand/tabs/board_icon.svg"
alt=""
/>
<p>Boards</p>
</div>
<div id="views" class="boxme" id="aman">
<img
src="https://dapulse-res.cloudinary.com/image/upload/e_colorize,co_rgb:6C6CFF/Generator_featured%20images/Home%20Page%20-%202022%20Rebrand/tabs/views_icon.svg"
alt=""
/>
<p>Views</p>
</div>
<div id="dashboards" class="boxme">
<img
src="https://dapulse-res.cloudinary.com/image/upload/e_colorize,co_rgb:6C6CFF/Generator_featured%20images/Home%20Page%20-%202022%20Rebrand/tabs/dashboard_icon.svg"
alt=""
/>
<p>Dashboards</p>
</div>
<div id="integrations" class="boxme">
<img
src="https://dapulse-res.cloudinary.com/image/upload/e_colorize,co_rgb:6C6CFF/Generator_featured%20images/Home%20Page%20-%202022%20Rebrand/tabs/integrations_icon.svg"
alt=""
/>
<p>Integrations</p>
</div>
<div id="automations" class="boxme">
<img
src="https://dapulse-res.cloudinary.com/image/upload/e_colorize,co_rgb:6C6CFF/Generator_featured%20images/Home%20Page%20-%202022%20Rebrand/tabs/automations_icon.svg"
alt=""
/>
<p>Automations</p>
</div>
<div id="apps" class="boxme">
<img
src="https://dapulse-res.cloudinary.com/image/upload/e_colorize,co_rgb:6C6CFF/Generator_featured%20images/Home%20Page%20-%202022%20Rebrand/tabs/apps_icon.svg"
alt=""
/>
<p>Apps</p>
</div>
<div id="docs" class="boxme">
<img
src="https://dapulse-res.cloudinary.com/image/upload/e_colorize,co_rgb:6C6CFF/Generator_featured%20images/Home%20Page%20-%202022%20Rebrand/tabs/docs_icon.svg"
alt=""
/>
<p>Docs</p>
</div>
</div>
<div id="mid-section-display-board">
<video width="53%" autoplay muted loop style=" box-shadow: rgba(9, 68, 243, 0.3) 0px 19px 568px,
rgba(9, 68, 243, 0.3) 0px 15px 12px;
border-radius: 20px;" src="https://dapulse-res.cloudinary.com/video/upload/q_auto,f_auto,cs_copy/Generator_featured%20images/Home%20Page%20-%202022%20Rebrand/tabs/final-videos-tabs/7_status.mp4"></video>
<div id="display-board">
<div>
<img id="logo-aman" src="https://dapulse-res.cloudinary.com/image/upload/e_colorize,co_rgb:6C6CFF/Generator_featured%20images/Home%20Page%20-%202022%20Rebrand/tabs/board_icon.svg" alt="">
<p id="title-aman">Boards</p>
</div>
<p id="para-aman">
Everything starts with a visual board — the core of monday.com Work OS. Tailor it your way and manage anything from projects to departments.
</p>
</div>
</div>
</div>
<!-- Monday-Product-section -->
<div id="Monday-Product-section">
<img src="https://dapulse-res.cloudinary.com/image/upload/f_auto,q_auto/Generator_featured%20images/Home%20Page%20-%202022%20Rebrand/products/monday_products_small.svg" alt="">
<p><b>End-to-end products</b> to run <br> the core of your business </p>
<p>Tailored products designed for every aspect of your teams' needs.</p>
<img style="transform: rotate(180deg); ;" oncontextMenu="return false;" src="./images/image5.png" alt="">
<video width="100%" style="margin-top: 50px; position: absolute; z-index: 15; margin-top: -190px;;" autoplay muted loop src="https://dapulse-res.cloudinary.com/video/upload/q_auto,f_auto,cs_copy/Generator_featured%20images/Home%20Page%20-%202022%20Rebrand/products/products_video.mp4"></video>
<img style="margin-top: 300px ;" oncontextMenu="return false;" src="./images/image5.png" alt="">
</div>
<div id="slider-div">
<div>
<p>See how <br>our customers <br>
<b>drive impact</b></p>
</div>
<div id="home-page-slider-board">
<img id="slider-images" onContextMenu="return false;" src= "./images/slider1.png" alt="">
</div>
</div>
<!-- Support - section -->
<div id="homepage-support-section">
<img src="https://dapulse-res.cloudinary.com/image/upload/f_auto,q_auto/Generator_featured%20images/Home%20Page%20-%202022%20Rebrand/customer-support/support_globe.png" alt="">
<div>
<p><b>Supporting</b> your growth <br> every step of the way</p>
<p>Our support superheroes are a click away to help you get the most out of monday.com, so you can focus on working without limits.</p>
<div id="support-icons">
<div>
<img src="https://dapulse-res.cloudinary.com/image/upload/Generator_featured%20images/Home%20Page%20-%202022%20Rebrand/customer-support/phone.png" alt="">
<div>
<p><b>24/7</b></p>
<p>support anytime,
anywhere</p>
</div>
</div>
<div>
<img src="https://dapulse-res.cloudinary.com/image/upload/Generator_featured%20images/Home%20Page%20-%202022%20Rebrand/customer-support/heart.png" alt="">
<div>
<p><b>Voted #1</b></p>
<p>Most Loved by
customers on G2</p>
</div>
</div>
<div>
<img src="https://dapulse-res.cloudinary.com/image/upload/Generator_featured%20images/Home%20Page%20-%202022%20Rebrand/customer-support/fast.png" alt="">
<div>
<p>
<b>2 hour</b></p>
<p>average
response time</p>
</div>
</div>
</div>
<button id="get-in-touch">Get in touch</button>
</div>
</div>
<!-- Testimonial section -->
<img style=" display: block; margin:auto; margin-top: 150px ;" src="https://dapulse-res.cloudinary.com/image/upload/Generator_featured%20images/Home%20Page%20-%202022%20Rebrand/review-cards/stars.png" alt="">
<div id="testimonial-section">
<p>An <b>award-winning</b> platform. <b>Loved </b> by customers.</p>
<p>Based on 10,000+ customer reviews.</p>
<div id="testimonial-cards">
<div>
<img src="https://dapulse-res.cloudinary.com/image/upload/Generator_featured%20images/Home%20Page%20-%202022%20Rebrand/review-cards/trust.png" alt="">
<p>Voted best feature set, relationship and value</p>
<p>“This is the best no-code platform I've ever seen.”</p>
</div>
<div>
<img src="https://dapulse-res.cloudinary.com/image/upload/Generator_featured%20images/Home%20Page%20-%202022%20Rebrand/review-cards/forrester.png" alt="">
<p>345% uplift in ROI</p>
<p>The Total Economic Impact™ Report</p>
</div>
<div>
<img src="https://dapulse-res.cloudinary.com/image/upload/Generator_featured%20images/Home%20Page%20-%202022%20Rebrand/review-cards/capterra.png" alt="">
<p>Shortlisted in over 8 software categories</p>
<p>“The perfect organizer and team builder.”</p>
</div>
<div>
<img src="https://dapulse-res.cloudinary.com/image/upload/Generator_featured%20images/Home%20Page%20-%202022%20Rebrand/review-cards/g2.png" alt="">
<p>Market leader across 18 categories</p>
<p>"Flexible product with near endless possibilities."</p>
</div>
</div>
<img style="transform: rotate(180deg); position: absolute; z-index: -4; margin-top: -230px;" oncontextMenu="return false;" src="./images/image5.png" alt="">
<div id="home-page-last-section">
<p>Deliver your best work <b>with monday.com</b></p>
<p>No credit card needed ✦ Unlimited time on Free plan</p>
<button>Get Started</button>
</div>
</div>
<hr>
<div id="footer-container"></div>
<hr>
</body>
</html>
<script src="./scripts/footer-index.js" type="module"></script>
<script src="nav_index.js" type="module"></script>
<script>
let images = [
"./images/slider1.png",
"./images/slider2.png",
"./images/slider3.png",
"./images/slider4.png",
"./images/slider5.png"
]
const displaySlider = document.getElementById('slider-images');
let i=0;
setInterval(function(){
if(i==images.length){
i=0;
}
displaySlider.src = images[i]
i++;
},2000)
document.getElementById("boards").addEventListener("click",()=>{
document.getElementById("logo-aman").src = "https://dapulse-res.cloudinary.com/image/upload/e_colorize,co_rgb:6C6CFF/Generator_featured%20images/Home%20Page%20-%202022%20Rebrand/tabs/board_icon.svg"
document.getElementById("title-aman").innerText = "Boards";
document.getElementById("para-aman").innerText = "Everything starts with a visual board — the core of monday.com Work OS. Tailor it your way and manage anything from projects to departments.";
})
document.getElementById("views").addEventListener("click",()=>{
document.getElementById("logo-aman").src = "https://dapulse-res.cloudinary.com/image/upload/e_colorize,co_rgb:6C6CFF/Generator_featured%20images/Home%20Page%20-%202022%20Rebrand/tabs/views_icon.svg"
document.getElementById("title-aman").innerText = "Views";
document.getElementById("para-aman").innerText = "Visualize and plan your work more efficiently with multiple views: Kanban board, calendar, timeline, Gantt chart, and more.";
})
document.getElementById("dashboards").addEventListener("click",()=>{
document.getElementById("logo-aman").src = "https://dapulse-res.cloudinary.com/image/upload/e_colorize,co_rgb:6C6CFF/Generator_featured%20images/Home%20Page%20-%202022%20Rebrand/tabs/dashboard_icon.svg"
document.getElementById("title-aman").innerText = "Dashboards";
document.getElementById("para-aman").innerText = "Get the insights you need to make decisions with confidence. Keep track of progress, timelines, and budgets with custom dashboards.";
})
document.getElementById("integrations").addEventListener("click",()=>{
document.getElementById("logo-aman").src = "https://dapulse-res.cloudinary.com/image/upload/e_colorize,co_rgb:6C6CFF/Generator_featured%20images/Home%20Page%20-%202022%20Rebrand/tabs/integrations_icon.svg"
document.getElementById("title-aman").innerText = "Integrations";
document.getElementById("para-aman").innerText = "Connect monday.com with all your favorite tools and get more work done. Integrate Slack, Dropbox, Adobe Creative Cloud, and more.";
})
document.getElementById("automations").addEventListener("click",()=>{
document.getElementById("logo-aman").src = "https://dapulse-res.cloudinary.com/image/upload/e_colorize,co_rgb:6C6CFF/Generator_featured%20images/Home%20Page%20-%202022%20Rebrand/tabs/automations_icon.svg"
document.getElementById("title-aman").innerText = "Automations";
document.getElementById("para-aman").innerText = "Streamline processes to focus on the work that matters. Choose from a variety of automation recipes or create your own in minutes.";
})
document.getElementById("apps").addEventListener("click",()=>{
document.getElementById("logo-aman").src = "https://dapulse-res.cloudinary.com/image/upload/e_colorize,co_rgb:6C6CFF/Generator_featured%20images/Home%20Page%20-%202022%20Rebrand/tabs/apps_icon.svg"
document.getElementById("title-aman").innerText = "Apps";
document.getElementById("para-aman").innerText = "Expand the capabilities of your Work OS with monday apps. Enhance your workflows with custom views, widgets, integrations, and more.";
})
document.getElementById("docs").addEventListener("click",()=>{
document.getElementById("logo-aman").src = "https://dapulse-res.cloudinary.com/image/upload/e_colorize,co_rgb:6C6CFF/Generator_featured%20images/Home%20Page%20-%202022%20Rebrand/tabs/docs_icon.svg"
document.getElementById("title-aman").innerText = "Docs";
document.getElementById("para-aman").innerText = "Transform text into action items, in just a few clicks. Connect, collaborate, and execute ideas and workflows in real-time from any doc.";
})
</script>