-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
804 lines (774 loc) · 30 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
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
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
<!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" />
<script async defer src="https://buttons.github.io/buttons.js"></script>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="shortcut icon" href="./assets/favicon.ico" type="image/x-icon" />
<script src="./tailwind.config.js"></script>
<title>VS-Code-Tailwind</title>
</head>
<body class="relative">
<!-- NavBar -->
<div class="Disclaimer h-10 flex items-center justify-center bg-white">
<p class="font-semibold text-[#2c2c32] text-2xl tracking-widest">
*For educational purpose only*
</p>
</div>
<nav class="bg-[#2c2c32] sticky top-0 flex justify-center z-10">
<div class="flex justify-between text-white content h-14 w-7/12">
<ul class="flex items-center justify-between w-7/12 text-[#ababaf]">
<div
class="flex items-center justify-between text-xl font-medium text-white hover:cursor-pointer"
>
<img src="./assets/index.png" alt="" class="h-6 mr-2" />
<span>Visual Studio Code</span>
</div>
<li class="hover:text-white hover:cursor-pointer">Docs</li>
<li class="hover:text-white hover:cursor-pointer">Updates</li>
<li class="hover:text-white hover:cursor-pointer">Blogs</li>
<li class="hover:text-white hover:cursor-pointer">API</li>
<li class="hover:text-white hover:cursor-pointer">Extensions</li>
<li class="hover:text-white hover:cursor-pointer">FAQ</li>
<li class="hover:text-white hover:cursor-pointer">Learn</li>
</ul>
<div class="flex items-center">
<div
class="flex items-center bg-zinc-700 h-full invisible xl:visible justify-between px-4 w-44 hover:bg-[#525257] hover:border-[1px] hover:border-[#757579]"
>
<img src="./assets/search.svg" alt="" class="h-4" />
<input
type="text"
placeholder="Search Docs"
class="invisible xl:visible text-[#b7b7ba] bg-[#3f3f46] w-4/5 border-0 text-sm h-full focus:outline-none hover:bg-[#525257]"
/>
</div>
<img src="./assets/search.svg" alt="" class="h-4 xl:hidden pr-4" />
<button
class="bg-[#0066b8] border-0 flex items-center justify-around px-4 text-sm font-bold h-full hover:bg-[#005ba4]"
>
<img class="h-4 mr-2" src="./assets/download.svg" alt="" />
<span>Download</span>
</button>
</div>
</div>
</nav>
<!--Main section -->
<main>
<!-- update banner -->
<div class="update">
<p
class="text-[#cccccc] tracking-wide text-base flex items-center justify-center py-2 font-sans bg-[#25252b]"
>
<span class="text-[#0066b8] px-2 hover:underline">Version 1.75</span>
is now available! Read about the new features and fixes from January.
</p>
</div>
<!-- Hero section -->
<div class="flex hero items-center justify-center bg-[#2c2c32]">
<!--left section-->
<div class="flex justify-between h-[36vh] xl:mb-40 mr-12">
<ul class="flex flex-col items-center justify-around h-100">
<li class="text-5xl font-light text-white">Code editing.</li>
<li class="text-5xl text-white">Redefined.</li>
<li class="text-xl text-[#a7a7a9] mb-6">
Free. Built on open source. Run everywhere.
</li>
<li class="flex justify-center item-center">
<button
class="bg-[#0066b8] flex flex-col border-0 text-white text-lg px-6 py-2 mr-1 hover:bg-[#005ba4]"
>
Download for Windows
<span class="text-sm text-[#e6eff6]">Stable Build</span>
</button>
<div
class="bg-[#0066b8] h-[64px] w-[3em] flex items-center justify-center hover:bg-[#005ba4]"
>
<img src="./assets/chevronDown.svg" alt="" class="h-4" />
</div>
</li>
<li
class="bg-[#25252b] py-2 px-5 rounded-xl text-[#aaaaad] text-sm"
>
<a href="" class="text-[#0098ff] hover:underline">Web</a>,
<a href="" class="text-[#0098ff] hover:underline"
>Insiders edition</a
>, or
<span class="text-[#0098ff] hover:underline"
><a href="">other platforms</a></span
>
</li>
<li class="w-64 text-sm text-center">
<p class="text-[#a9a9ab]">
By using VS Code, you agree to its
<br />
<a href="" class="text-[#0098ff] hover:underline"
>license and privacy statement.</a
>
</p>
</li>
</ul>
</div>
<!-- right section -->
<div class="right bg-[#2c2c32] w-[600px] xl:w-[720px] py-10">
<img src="./assets/home-screenshot-win-lg.png" alt="" />
</div>
</div>
<div class="flex items-center justify-center parent">
<div
class="flex items-center justify-between w-3/6 h-36 text-xl font-light"
>
<div
class="flex flex-col items-center inteli h-full hover:bg-[#e3e3e3] justify-center w-1/4"
>
<img src="./assets/Vectorbulb.svg" class="h-16" alt="" />
<span>IntelliSense</span>
</div>
<div
class="flex flex-col items-center debug h-full hover:bg-[#e3e3e3] justify-center w-1/4"
>
<img src="./assets/Vectordebugger.svg" class="h-16" alt="" />
<span>Run and Debug</span>
</div>
<div
class="flex flex-col items-center git h-full hover:bg-[#e3e3e3] justify-center w-1/4"
>
<img src="./assets/Vectorbranch.svg" alt="" class="h-16" />
<span>Built-in Git</span>
</div>
<div
class="flex flex-col items-center contain h-full hover:bg-[#e3e3e3] justify-center w-1/4"
>
<img src="./assets/Vectorcontain.svg" class="h-16" alt="" />
<span>Extensions</span>
</div>
</div>
</div>
<!-- reviews -->
<div
class="reviews profile h-72 w-screen justify-center bg-[#f5f5f5] items-center flex"
>
<div class="px-4 left-arrow">
<img src="./assets/left_arrow.svg" class="w-10" alt="" />
</div>
<section class="flex w-1/6">
<img
src="./assets/account_circle_FILL0_wght400_GRAD0_opsz48.svg"
alt=""
class="block h-16"
/>
<article class="h-40%">
<p class="text-sm">Hehe <span>@hehe</span></p>
<p class="text-left">
Lorem ipsum dolor sit, amet consectetur adipisicing elit.
Voluptates quibusdam deleniti aliquid maiores mollitia similique
soluta.
</p>
</article>
</section>
<section class="flex w-1/6">
<img
src="./assets/account_circle_FILL0_wght400_GRAD0_opsz48.svg"
alt=""
class="h-16"
/>
<article class="h-40%">
<p class="text-sm">Haha <span>@haha</span></p>
<p class="text-left">
Lorem ipsum dolor sit, amet consectetur adipisicing elit.
Voluptates quibusdam deleniti aliquid maiores mollitia similique
soluta.
</p>
</article>
</section>
<section class="flex w-1/6">
<img
src="./assets/account_circle_FILL0_wght400_GRAD0_opsz48.svg"
alt=""
class="h-16"
/>
<article class="">
<p class="text-sm">Hoho <span>@hoho</span></p>
<p class="text-left">
Lorem ipsum dolor sit, amet consectetur adipisicing elit.
Voluptates quibusdam deleniti aliquid maiores mollitia similique
soluta.
</p>
</article>
</section>
<div class="left-arrow">
<img src="./assets/right_arrow.svg" class="w-10" alt="" />
</div>
</div>
<!-- features extended -->
<!-- #1 -->
<section class="flex items-start justify-center pt-10 font-light h-72">
<img src="./assets/home-intellisense (1).svg" alt="" class="h-56" />
<article class="w-2/5 pl-40">
<h2 class="text-3xl text-[#444444]">
Deploy with confidence and ease.
</h2>
<p class="mt-10 text-lg text-justify">
Go beyond syntax highlighting and autocomplete with IntelliSense,
which provides smart completions based on variable types, function
definitions, and imported modules.
</p>
</article>
</section>
<!-- #2 -->
<section
class="flex font-light items-start justify-center pt-10 h-72 bg-[#f5f5f5]"
>
<article class="w-2/5 pr-40">
<h2 class="text-3xl text-[#444444]">
Print statement debugging is a thing of the past.
</h2>
<p class="mt-10 text-lg text-justify">
Debug code right from the editor. Launch or attach to your running
apps and debug with break points, call stacks, and an interactive
console.
</p>
</article>
<img src="./assets/home-debug (1).svg" alt="" class="h-56" />
</section>
<!-- #3 -->
<section class="flex items-start justify-center pt-10 font-light h-72">
<img src="./assets/home-git.svg" alt="" class="h-56" />
<article class="w-2/5 pl-40">
<h2 class="text-3xl text-[#444444]">Git commands built-in.</h2>
<p class="mt-10 text-lg text-justify">
Working with Git and other SCM providers has never been easier.
Review diffs, stage files, and make commits right from the editor.
Push and pull from any hosted SCM service.
</p>
</article>
</section>
<!-- #4-->
<section
class="flex font-light items-start justify-center pt-10 h-72 bg-[#f5f5f5]"
>
<article class="w-2/5 pr-40">
<h2 class="text-3xl text-[#444444]">Extensible and customizable.</h2>
<p class="mt-10 text-lg text-justify">
Want even more features? Install extensions to add new languages,
themes, debuggers, and to connect to additional services. Extensions
run in separate processes, ensuring they won't slow down your
editor.
<span class="text-[#0071bc]">Learn more about extensions.</span>
</p>
</article>
<img src="./assets/Extensions.png" alt="" class="h-56" />
</section>
<!-- #5 -->
<section class="flex items-start justify-center pt-10 font-light h-72">
<img src="./assets/home-azure.svg" alt="" class="h-56" />
<article class="w-2/5 pl-40">
<h2 class="text-3xl text-[#444444]">
Deploy with confidence and ease.
</h2>
<p class="mt-10 text-lg text-justify">
With <span class="text-[#0071bc]">Microsoft Azure</span> you can
deploy and host your React, Angular, Vue, Node, Python (and more!)
sites, store and query relational and document based data, and scale
with serverless computing, all with ease,
<span class="text-[#0071bc]">all from within VS Code</span>.
</p>
</article>
</section>
<!-- languages section -->
<div
class="flex flex-col items-center justify-center gap-y-8 py-20 bg-[#f5f5f5] languages"
>
<h2 class="text-3xl font-thin text-[#444444]">VS Code for</h2>
<!-- upper -->
<section class="w-2/4 upper">
<ul class="flex justify-between flex-1 text-xl upper">
<li class="flex flex-1 font-light">
<img
class="block h-8"
src="./assets/language-icons/javascript.svg"
alt=""
/>
<span>Javascript</span>
</li>
<li class="flex flex-1 font-light">
<img
class="block h-8"
src="./assets/language-icons/python.svg"
alt=""
/>
<span> Python</span>
</li>
<li class="flex flex-1 font-light">
<img
class="block h-8"
src="./assets/language-icons/java.svg"
alt=""
/>
<span> Java</span>
</li>
<li class="flex flex-1 font-light">
<img
class="block h-8"
src="./assets/language-icons/markdown.svg"
alt=""
/>
<span>Markdown</span>
</li>
<li class="flex flex-1 font-light">
<img
class="block h-8"
src="./assets/language-icons/typescript.svg"
alt=""
/>
<span>TypeScript</span>
</li>
<li class="flex flex-1 font-light">
<img
class="block h-8"
src="./assets/language-icons/cpp.svg"
alt=""
/><span>C/C++</span>
</li>
</ul>
</section>
<!-- lower -->
<section class="w-2/4 lower">
<ul class="flex justify-between flex-1 text-xl lower">
<li class="flex flex-1 font-light">
<img
class="block h-8"
src="./assets/language-icons/json.svg"
alt=""
/>
<span>JSON</span>
</li>
<li class="flex flex-1 font-light">
<img
class="block h-8"
src="./assets/language-icons/powershell.svg"
alt=""
/>
<span>Powershell</span>
</li>
<li class="flex flex-1 font-light">
<img
class="block h-8"
src="./assets/language-icons/html.svg"
alt=""
/>
<span>HTML/CSS</span>
</li>
<li class="flex flex-1 font-light">
<img
class="block h-8"
src="./assets/language-icons/csharp.svg"
alt=""
/>
<span>C#</span>
</li>
<li class="flex flex-1 font-light">
<img
class="block h-8"
src="./assets/language-icons/php.svg"
alt=""
/>
<span>PHP</span>
</li>
<li class="flex flex-1 font-light">
<img
class="block h-8"
src="./assets/language-icons/yaml.svg"
alt=""
/>
<span>YAML</span>
</li>
</ul>
</section>
<div
class="others text-lg relative bottom-4 text-[#0071bc] hover:underline hover:text-[#005893]"
>
<p>and many more languages on the Marketplace...</p>
</div>
<a
href="https://code.visualstudio.com/docs"
class="bg-[#0066b8] text-white text-2xl mt-4 font-semibold px-12 py-4 hover:bg-[#005ba4]"
>
Get Started Now
</a>
</div>
</main>
<!-- downloads section -->
<section class="downloads flex justify-center py-16">
<!-- Windows -->
<section class="#1 flex items-center flex-col">
<img src="./assets/windows-logo.png" alt="" class="h-28 w-28 mb-4" />
<div class="download-btn">
<button
href="hhehe"
class="flex flex-col items-center bg-[#0066b8] text-white justify-center text-xl font-semibold w-64 h-20 hover:bg-[#005ba4]"
>
<div class="flex items-center">
<img src="./assets/download.svg" alt="" class="h-4 mr-4" />
<span>Windows</span>
</div>
<p class="text-xs">Windows 8, 10, 11</p>
</button>
</div>
<div class="download-links flex mt-6">
<table>
<tbody>
<tr>
<td class="font-semibold text-[#444444] text-center">
User Installer
</td>
<td
class="text-xs bg-[#0066b8] text-white border-8 border-white px-2 rounded-[10px] hover:bg-[#005ba4]"
>
<a href="">x64</a>
</td>
<td
class="text-xs bg-[#0066b8] text-white border-8 border-white px-2 rounded-[10px] hover:bg-[#005ba4]"
>
<a href="">x86</a>
</td>
<td
class="text-xs bg-[#0066b8] text-white border-8 border-white px-2 rounded-[10px] hover:bg-[#005ba4]"
>
<a href="">Arm64</a>
</td>
</tr>
<tr>
<td class="font-semibold text-[#444444] text-center">
<a href="">System Installer</a>
</td>
<td
class="text-xs bg-[#0066b8] text-white border-8 border-white px-2 rounded-[10px] hover:bg-[#005ba4]"
>
<a href="">x64</a>
</td>
<td
class="text-xs bg-[#0066b8] text-white border-8 border-white px-2 rounded-[10px] hover:bg-[#005ba4]"
>
<a href="">x86</a>
</td>
<td
class="text-xs bg-[#0066b8] text-white border-8 border-white px-2 rounded-[10px] hover:bg-[#005ba4]"
>
<a href="">Arm64</a>
</td>
</tr>
<tr>
<td class="font-semibold text-[#444444] text-center">.zip</td>
<td
class="text-xs bg-[#0066b8] text-white border-8 border-white px-2 rounded-[10px] hover:bg-[#005ba4]"
>
<a href="">x64</a>
</td>
<td
class="text-xs bg-[#0066b8] text-white border-8 border-white px-2 rounded-[10px] hover:bg-[#005ba4]"
>
<a href="">x86</a>
</td>
<td
class="text-xs bg-[#0066b8] text-white border-8 border-white px-2 rounded-[10px] hover:bg-[#005ba4]"
>
<a href="">Arm64</a>
</td>
</tr>
<tr>
<td class="font-semibold text-[#444444] text-center">CLI</td>
<td
class="text-xs bg-[#0066b8] text-white border-8 border-white px-2 rounded-[10px] hover:bg-[#005ba4]"
>
<a href="">x64</a>
</td>
<td
class="text-xs bg-[#0066b8] text-white border-8 border-white px-2 rounded-[10px] hover:bg-[#005ba4]"
>
<a href="">x86</a>
</td>
<td
class="text-xs bg-[#0066b8] text-white border-8 border-white px-2 rounded-[10px] hover:bg-[#005ba4]"
>
<a href="">Arm64</a>
</td>
</tr>
</tbody>
</table>
</div>
</section>
<!-- Linux -->
<section class="#1 flex items-center flex-col px-10">
<img src="./assets/linux-logo.png" alt="" class="h-28 w-28 mb-4" />
<div class="download-btn flex gap-1">
<!-- Deb -->
<button
href="hhehe"
class="flex flex-col items-center bg-[#0066b8] text-white justify-center text-xl font-semibold w-40 h-20 hover:bg-[#005ba4]"
>
<div class="flex items-center">
<img src="./assets/download.svg" alt="" class="h-4 mr-4" />
<span>.deb</span>
</div>
<p class="text-xs">Windows 8, 10, 11</p>
</button>
<!-- RPM -->
<button
href="hhehe"
class="flex flex-col items-center bg-[#0066b8] text-white justify-center text-xl font-semibold w-40 h-20 hover:bg-[#005ba4]"
>
<div class="flex items-center">
<img src="./assets/download.svg" alt="" class="h-4 mr-4" />
<span>.rpm</span>
</div>
<p class="text-xs">Windows 8, 10, 11</p>
</button>
</div>
<div class="download-links flex mt-6">
<table class="table">
<tbody>
<tr>
<td class="font-semibold text-[#444444] text-center">.deb</td>
<td
class="text-xs bg-[#0066b8] text-white border-8 border-white px-2 rounded-[10px] hover:bg-[#005ba4]"
>
<a href="">x64</a>
</td>
<td
class="text-xs bg-[#0066b8] text-white border-8 border-white px-2 rounded-[10px] hover:bg-[#005ba4]"
>
<a href="">Arm32</a>
</td>
<td
class="text-xs bg-[#0066b8] text-white border-8 border-white px-2 rounded-[10px] hover:bg-[#005ba4]"
>
<a href="">Arm64</a>
</td>
</tr>
<tr>
<td class="font-semibold text-[#444444] text-center">.rpm</td>
<td
class="text-xs bg-[#0066b8] text-white border-8 border-white px-2 rounded-[10px] hover:bg-[#005ba4]"
>
<a href="">x64</a>
</td>
<td
class="text-xs bg-[#0066b8] text-white border-8 border-white px-2 rounded-[10px] hover:bg-[#005ba4]"
>
<a href="">Arm32</a>
</td>
<td
class="text-xs bg-[#0066b8] text-white border-8 border-white px-2 rounded-[10px] hover:bg-[#005ba4]"
>
<a href="">Arm64</a>
</td>
</tr>
<tr>
<td class="font-semibold text-[#444444] text-center">
.tar.gz
</td>
<td
class="text-xs bg-[#0066b8] text-white border-8 border-white px-2 rounded-[10px] hover:bg-[#005ba4]"
>
<a href="">x64</a>
</td>
<td
class="text-xs bg-[#0066b8] text-white border-8 border-white px-2 rounded-[10px] hover:bg-[#005ba4]"
>
<a href="">Arm32</a>
</td>
<td
class="text-xs bg-[#0066b8] text-white border-8 border-white px-2 rounded-[10px] hover:bg-[#005ba4]"
>
<a href="">Arm64</a>
</td>
</tr>
<tr class="">
<td class="font-semibold text-[#444444] text-center">Snap</td>
<td
colspan="2"
class="text-xs bg-[#0066b8] text-white border-8 border-white px-2 rounded-[10px] hover:bg-[#005ba4]"
>
<a href="">Snap Store</a>
</td>
</tr>
<tr>
<td class="font-semibold text-[#444444] text-center">CLI</td>
<td
class="text-xs bg-[#0066b8] text-white border-8 border-white px-2 rounded-[10px] hover:bg-[#005ba4]"
>
<a href="">x64</a>
</td>
<td
class="text-xs bg-[#0066b8] text-white border-8 border-white px-2 rounded-[10px] hover:bg-[#005ba4]"
>
<a href="">Arm32</a>
</td>
<td
class="text-xs bg-[#0066b8] text-white border-8 border-white px-2 rounded-[10px] hover:bg-[#005ba4]"
>
<a href="">Arm64</a>
</td>
</tr>
</tbody>
</table>
</div>
</section>
<!-- Mac -->
<section class="#1 flex flex-col items-center">
<img src="./assets/apple-logo.svg" alt="" class="h-28 w-28 mb-4" />
<div class="download-btn">
<button
href="hhehe"
class="flex flex-col items-center bg-[#0066b8] text-white justify-center text-xl font-semibold w-64 h-20 hover:bg-[#005ba4]"
>
<div class="flex items-center">
<img src="./assets/download.svg" alt="" class="h-4 mr-4" />
<span>Mac</span>
</div>
<p class="text-xs">Windows 8, 10, 11</p>
</button>
</div>
<div class="download-links flex mt-6">
<table>
<tbody>
<tr>
<td class="font-semibold text-[#444444] text-center">.zip</td>
<td
class="text-xs bg-[#0066b8] text-white border-8 border-white px-2 rounded-[10px] hover:bg-[#005ba4]"
>
<a href="">Intel chip</a>
</td>
<td
class="text-xs bg-[#0066b8] text-white border-8 border-white px-2 rounded-[10px] hover:bg-[#005ba4]"
>
<a href="">Apple silicon</a>
</td>
<td
class="text-xs bg-[#0066b8] text-white border-8 border-white px-2 rounded-[10px] hover:bg-[#005ba4]"
>
<a href="">Universal</a>
</td>
</tr>
<tr>
<td class="font-semibold text-[#444444] text-center">CLI</td>
<td
class="text-xs bg-[#0066b8] text-white border-8 border-white px-2 rounded-[10px] hover:bg-[#005ba4]"
>
<a href="">Intel chip</a>
</td>
<td
class="text-xs bg-[#0066b8] text-white border-8 border-white px-2 rounded-[10px] hover:bg-[#005ba4]"
>
<a href="">Apple silicon</a>
</td>
</tr>
</tbody>
</table>
</div>
</section>
</section>
<!-- terms -->
<section class="flex flex-col bg-[#f5f5f5] w-screen items-center py-12">
<div class="terms flex mb-32 gap-56">
<div class="left text-xl leading-loose text-[#444444] font-semibold">
<h2 class="text-2xl">Want new features sooner?</h2>
<p class="font-light">
Get the
<a
href="https://code.visualstudio.com/insiders/"
class="text-[#0071bc] hover:underline hover:text-[#005893]"
>Insiders build</a
>
instead.
</p>
</div>
<div class="right leading-loose text-xl">
<h2 class="text-2xl text-center">
Use
<a
href="vscode.dev"
class="text-[#0071bc] hover:underline hover:text-[#005893]"
>vscode.dev</a
>
for quick edits <br />
online!
</h2>
<p class="font-light">GitHub, Azure Repos, and local files.</p>
</div>
</div>
<!-- terms extended -->
<div class="terms-extended text-lg w-2/5 text-center text-[#6c6c6c]">
<h3 class="text-sm leading-10 font-semibold">
LICENSE AND PRIVACY TERMS
</h3>
<p class="text-sm leading-10">
By downloading and using Visual Studio Code, you agree to the
<a
href="https://code.visualstudio.com/License/"
class="text-[#0071bc] hover:underline hover:text-[#005893]"
>license terms</a
>
and
<a
href="https://privacy.microsoft.com/en-US/privacystatement"
class="text-[#0071bc] hover:underline hover:text-[#005893]"
>privacy statement.</a
>
VS Code automatically sends telemetry data and crash dumps to help us
improve the product. If you would prefer not to have this data sent
please go see
<a
href="https://code.visualstudio.com/docs/supporting/FAQ#_how-to-disable-crash-reporting"
class="text-[#0071bc] hover:underline hover:text-[#005893]"
>How to Disable Crash Reporting</a
>
to learn how to disable it.
</p>
</div>
</section>
<!-- footer -->
<footer
class="relative bottom-0 left-0 right-0 h-32 bg-[#333333] text-white flex justify-center items-center pb-10"
>
<div class="flex items-center justify-between w-3/5 content">
<div class="flex justify-between text-sm w-[36%] font-semibold follow">
<span>Hello from India.</span>
<a
href="https://www.instagram.com/imanshul07/"
class="hover:text-[#b4a0ff]"
>Follow @imanshul07</a
>
<a
class="github-button"
href="https://github.com/hianshul07"
aria-label="Follow @hianshul07 on GitHub"
>@hianshul07</a
>
</div>
<ul class="flex items-start justify-between text-xs w-96 links">
<li class="hover:text-[#b4a0ff]"><a href="">Support</a></li>
<li class="hover:text-[#b4a0ff]"><a href="">Privacy</a></li>
<li class="hover:text-[#b4a0ff]"><a href="">Terms of Use</a></li>
<li class="hover:text-[#b4a0ff]"><a href="">License</a></li>
<li>
<ul class="">
<li>
<a href="https://www.microsoft.com/en-in/"
><img
src="./assets/microsoft-logo.png"
alt=""
class="block h-5"
/></a>
</li>
<li class="text-xs">© 2023 Microsoft</li>
</ul>
</li>
</ul>
</div>
</footer>
</body>
</html>