-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmodels.zip
5701 lines (5680 loc) · 589 KB
/
models.zip
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
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html><html><head><title>Google Drive - Virus scan warning</title><meta http-equiv="content-type" content="text/html; charset=utf-8"/><style nonce="yv7GJtmTj2lOO8uoP3GtpA">/* Copyright 2022 Google Inc. All Rights Reserved. */
.goog-inline-block{position:relative;display:-moz-inline-box;display:inline-block}* html .goog-inline-block{display:inline}*:first-child+html .goog-inline-block{display:inline}.goog-link-button{position:relative;color:#15c;text-decoration:underline;cursor:pointer}.goog-link-button-disabled{color:#ccc;text-decoration:none;cursor:default}body{color:#222;font:normal 13px/1.4 arial,sans-serif;margin:0}.grecaptcha-badge{visibility:hidden}.uc-main{padding-top:50px;text-align:center}#uc-dl-icon{display:inline-block;margin-top:16px;padding-right:1em;vertical-align:top}#uc-text{display:inline-block;max-width:68ex;text-align:left}.uc-error-caption,.uc-warning-caption{color:#222;font-size:16px}#uc-download-link{text-decoration:none}.uc-name-size a{color:#15c;text-decoration:none}.uc-name-size a:visited{color:#61c;text-decoration:none}.uc-name-size a:active{color:#d14836;text-decoration:none}.uc-footer{color:#777;font-size:11px;padding-bottom:5ex;padding-top:5ex;text-align:center}.uc-footer a{color:#15c}.uc-footer a:visited{color:#61c}.uc-footer a:active{color:#d14836}.uc-footer-divider{color:#ccc;width:100%}</style><link rel="icon" href="null"/></head><body><div class="uc-main"><div id="uc-dl-icon" class="image-container"><div class="drive-sprite-aux-download-file"></div></div><div id="uc-text"><p class="uc-warning-caption">Google Drive can't scan this file for viruses.</p><p class="uc-warning-subcaption"><span class="uc-name-size"><a href="/open?id=1QCSxJZpnWvM00hx49CJ2zky7PWGzpcEh">models.zip</a> (2.4G)</span> is too large for Google to scan for viruses. Would you still like to download this file?</p><form id="downloadForm" action="https://drive.google.com/uc?id=1QCSxJZpnWvM00hx49CJ2zky7PWGzpcEh&export=download&confirm=t&uuid=df463465-b6cc-45d9-ac17-ba7a454f536b" method="post"><input type="submit" id="uc-download-link" class="goog-inline-block jfk-button jfk-button-action" value="Download anyway"/></form></div></div><div class="uc-footer"><hr class="uc-footer-divider"></div></body></html>User-agent: *
Crawl-delay: 1
Allow: /$
Allow: /?hl=
Disallow: /?hl=*&
Allow: /support/
Allow: /a/
Allow: /Doc
Allow: /View
Allow: /ViewDoc
Allow: /present
Allow: /Present
Allow: /TeamPresent
Allow: /EmbedSlideshow
Allow: /presentation
Allow: /templates
Allow: /previewtemplate
Allow: /fileview
Allow: /gview
Allow: /viewer
Allow: /leaf
Allow: /file
Allow: /document
Allow: /drawings
Allow: /demo
Allow: /folder
Allow: /start
Allow: /spreadsheet
Allow: /forms
Allow: /macros
Allow: /keep
Allow: /static
Allow: /drive/
Disallow: /open
Disallow: /templateabuse
Disallow: /
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="initial-scale=1, minimum-scale=1, width=device-width" name="viewport">
<meta content="IE=Edge" http-equiv="X-UA-Compatible">
<meta http-equiv="x-dns-prefetch-control" content="on">
<meta name="referrer" content="no-referrer">
<link rel="apple-touch-icon-precomposed" sizes="180x180" href="https://storage.googleapis.com/operating-anagram-8280/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://storage.googleapis.com/operating-anagram-8280/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="https://storage.googleapis.com/operating-anagram-8280/favicon-16x16.png">
<link rel="shortcut icon" href="https://storage.googleapis.com/operating-anagram-8280/favicon.ico">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700|Google+Sans+Text:400,500,700,400i,500i,700i|Google+Sans:400,500|Product+Sans:400&lang=en&display=swap" nonce="zL7R9GwNIEdAS9WK6I0Sug">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons&display=swap" rel="stylesheet" nonce="zL7R9GwNIEdAS9WK6I0Sug">
<link href="/drive/static/css/drive-new.min.css" rel="stylesheet" nonce="zL7R9GwNIEdAS9WK6I0Sug">
<meta name="twitter:url" content="https://twitter.com/googledrive">
<meta name="twitter:title" content="Personal Cloud Storage & File Sharing Platform - Google">
<meta name="twitter:image" content="https://kstatic.googleusercontent.com/files/d57b24106c34c7e50ef3d98423b94ddaf35ad2da73a9b9d4d12f52dbb9dd4c08c2957f6255ab8690d5ef0b32cff8287e09577d05e479d263e872160c4c9e8363">
<meta name="twitter:description" content="Learn about Google Drive’s file sharing platform that provides a personal, secure cloud storage option to share content with other users.">
<meta name="twitter:creator" content="Google">
<meta property="og:url" content="">
<meta content="Personal Cloud Storage & File Sharing Platform - Google" property="og:title">
<meta content="https://kstatic.googleusercontent.com/files/d57b24106c34c7e50ef3d98423b94ddaf35ad2da73a9b9d4d12f52dbb9dd4c08c2957f6255ab8690d5ef0b32cff8287e09577d05e479d263e872160c4c9e8363" property="og:image">
<meta content="Learn about Google Drive’s file sharing platform that provides a personal, secure cloud storage option to share content with other users." property="og:description">
<meta property="og:type" content="website">
<title>
Personal Cloud Storage & File Sharing Platform - Google
</title>
<meta name="description" content="Learn about Google Drive’s file sharing platform that provides a personal, secure cloud storage option to share content with other users.">
<link href="https://www.google.com/drive/" rel="canonical">
<script nonce="zL7R9GwNIEdAS9WK6I0Sug">
(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-THMG5X6');
</script>
<style>
@media screen and (min-width: 1024px) {
.bg-img-started {
background-image: url(https://lh3.googleusercontent.com/5ENDQP8kSi6cTdflVOyjCg-zrUJPQ1EfxYKiEkWkwrSNp8TaqrBmFVpKfhOOQ4tM9ST5D7956nobaowYGzlhfUqIEklaJTeOhJnlCmRGrYnoHmHAMv4=w1024);
}
}
@media screen and (min-width: 1700px) {
.bg-img-started {
background-image: url(https://lh3.googleusercontent.com/dqDaz7K1MgwLzGapf5IvCe7wwyPjeiYL1XflqMvx2WVfPstd1fpsfjhI-XPDCVFc99LDWPK-nUQB6FJJmCeDSQNpW1cpvEFChJRWAfSnSmCWH9t6_SQJ=w1700);
}
}
</style>
</head>
<body class="glue-body">
<header class="glue-header glue-header--single">
<div class="overlay is-visible"></div>
<div class="glue-header__bar glue-header__bar--mobile">
<div class="glue-header__tier">
<div class="glue-header__container">
<a href="#content" class="glue-header__link glue-header__skip-content" data-category="main nav" data-action="header logo" data-label="na">Jump to Content</a>
<div class="glue-header__lock-up">
<div class="glue-header__hamburger glue-header__hamburger--first-tier">
<div class="glue-header__hamburger-wrapper">
<button type="button" class="glue-header__drawer-toggle-btn" aria-controls="glue-drawer" aria-haspopup="true" aria-expanded="false" aria-label="Open the navigation drawer"><svg role="presentation" aria-hidden="true" class="glue-icon glue-icon--24px">
<use href="/drive/static/img/glue-icons.svg#menu"></use></svg></button>
</div>
</div>
<div class="glue-header__logo">
<a class="glue-header__logo-link" href="/drive/" title="Google Drive" data-category="main nav" data-action="header logo" data-label="na" aria-label="Google Drive"><img src="https://kstatic.googleusercontent.com/files/d57b24106c34c7e50ef3d98423b94ddaf35ad2da73a9b9d4d12f52dbb9dd4c08c2957f6255ab8690d5ef0b32cff8287e09577d05e479d263e872160c4c9e8363" alt="drive icon">
<div class="glue-header__logo-container">
<svg role="presentation" aria-hidden="true" class="glue-icon glue-icon--24px glue-header__logo-svg">
<use href="/drive/static/img/glue-icons.svg#google-solid-logo"></use></svg>
</div>
<p class="glue-header__logo--product">
Drive
</p></a>
</div>
</div>
</div>
<div class="glue-header__container">
<div class="glue-header__cta">
<a href="https://accounts.google.com/ServiceLogin?service=wise&passive=true&continue=http%3A%2F%2Fdrive.google.com%2F%3Futm_source%3Den&utm_medium=button&utm_campaign=web&utm_content=gotodrive&usp=gtd&ltmpl=drive" class="sign-in--link" target="_blank" rel="noopener noreferrer" data-category="cta" data-action="sign in" data-label="header">Sign in</a> <a href="https://accounts.google.com/ServiceLogin?service=wise&passive=true&continue=http%3A%2F%2Fdrive.google.com%2F%3Futm_source%3Den&utm_medium=button&utm_campaign=web&utm_content=gotodrive&usp=gtd&ltmpl=drive" class="glue-button glue-button--medium-emphasis glue-header__cta-secondary" target="_blank" rel="noopener noreferrer" data-category="cta" data-action="go to drive" data-label="header">Go to Drive</a> <a href="https://workspace.google.com/intl/en/features?utm_source=driveforwork&utm_medium=et&utm_content=trydriveforyourteam&utm_campaign=globalnav" class="glue-button glue-button--high-emphasis hero-btn" target="_blank" rel="noopener noreferrer" data-category="cta" data-action="try drive for work" data-label="header">Try Drive for Work</a>
</div>
</div>
</div>
</div>
<div id="glue-drawer" class="glue-header__bar glue-header__bar--desktop glue-header__drawer">
<div class="glue-header__tier">
<div class="glue-header__container">
<a href="#content" class="glue-header__link glue-header__skip-content" data-category="main nav" data-action="header logo" data-label="na">Jump to Content</a>
<div class="glue-header__lock-up">
<div class="glue-header__logo">
<a class="glue-header__logo-link" href="/drive/" title="Google Drive" data-category="main nav" data-action="header logo" data-label="na" aria-label="Google Drive"><img src="https://kstatic.googleusercontent.com/files/d57b24106c34c7e50ef3d98423b94ddaf35ad2da73a9b9d4d12f52dbb9dd4c08c2957f6255ab8690d5ef0b32cff8287e09577d05e479d263e872160c4c9e8363" alt="drive icon">
<div class="glue-header__logo-container">
<svg role="presentation" aria-hidden="true" class="glue-icon glue-icon--24px glue-header__logo-svg">
<use href="/drive/static/img/glue-icons.svg#google-solid-logo"></use></svg>
</div>
<p class="glue-header__logo--product">
Drive
</p></a>
</div>
</div>
</div>
<div class="glue-header__container glue-header__container--flex-auto">
<nav class="glue-header__link-bar">
<ul class="glue-header__list glue-header__link-bar--arrow">
<li class="glue-header__item nav-items" aria-level="1" id="overview">
<a href="#overview" class="glue-header__link" data-category="main nav" data-action="overview" data-label="na" title="Overview">Overview</a>
</li>
<li class="glue-header__item nav-items" aria-level="1" id="features">
<a href="#features" class="glue-header__link" data-category="main nav" data-action="features" data-label="na" title="Features">Features</a>
</li>
<li class="glue-header__item nav-items" aria-level="1" id="customers">
<a href="#customers" class="glue-header__link" data-category="main nav" data-action="customers" data-label="na" title="Customers">Customers</a>
</li>
<li class="glue-header__item nav-items" aria-level="1" id="pricing">
<a href="#pricing" class="glue-header__link" data-category="main nav" data-action="pricing" data-label="na" title="Pricing">Pricing</a>
</li>
<li class="glue-header__item nav-items" aria-level="1" id="https://www.google.com/drive/download/">
<a href="https://www.google.com/drive/download/" class="glue-header__link" data-category="main nav" data-action="download" data-label="na" title="Download">Download</a>
</li>
<li class="glue-header__item site-name workspace-icon">
<a href="javascript:" class="glue-header__link workspace-icon-link mega-menu-btn" data-category="main nav" data-action="more tools" data-label="na" title="More tools">More tools <svg role="presentation" aria-hidden="true" class="glue-icon glue-icon--24px mega-menu-expand">
<use href="/drive/static/img/glue-icons.svg#expand-more"></use></svg></a>
<ul class="glue-header__list glue-header__list--nested mobile-only">
<li class="glue-header__item" aria-level="2">
<a class="glue-header__link" href="https://www.google.com/drive/?hl=en" tabindex="0" target="_blank" rel="noopener noreferrer" data-category="main nav" data-action="more tools" data-label="drive"><img src="https://kstatic.googleusercontent.com/files/d57b24106c34c7e50ef3d98423b94ddaf35ad2da73a9b9d4d12f52dbb9dd4c08c2957f6255ab8690d5ef0b32cff8287e09577d05e479d263e872160c4c9e8363" alt="drive icon"><span>Drive</span></a>
</li>
<li class="glue-header__item" aria-level="2">
<a class="glue-header__link" href="https://www.google.com/gmail/about/?hl=en" tabindex="0" target="_blank" rel="noopener noreferrer" data-category="main nav" data-action="more tools" data-label="gmail"><img src="https://kstatic.googleusercontent.com/files/6d2a2dbaad1a3fe4c323dd6a4688db96e47b423de4175611399a97dc5b64a4ad7490d703aa0af80f28936e842e9d2448b1d74a530a2fe479a306d92281678efa" alt="gmail icon"><span>Gmail</span></a>
</li>
<li class="glue-header__item" aria-level="2">
<a class="glue-header__link" href="https://apps.google.com/meet/?hl=en" tabindex="0" target="_blank" rel="noopener noreferrer" data-category="main nav" data-action="more tools" data-label="meet"><img src="https://kstatic.googleusercontent.com/files/2c19e911a3a8404b51c5c92087c9df618f6903c14e4ba28ba4ec1fe577dec6c08e158172897eb0ed31738aac610409999fd2c4376548f1159f375387aadce233" alt="Meet icon"><span>Meet</span></a>
</li>
<li class="glue-header__item" aria-level="2">
<a class="glue-header__link" href="https://workspace.google.com/products/calendar/?hl=en&utm_source=driveforwork&utm_medium=et&utm_content=calendar&utm_campaign=globalnav" tabindex="0" target="_blank" rel="noopener noreferrer" data-category="main nav" data-action="more tools" data-label="calendar"><img src="https://kstatic.googleusercontent.com/files/e5bae7cd1a971c0ecd82e839e79e9c436d16842cada6dd01a51b81bd8c3722914d7dbb9bfd927abb4de8b11d6a4a7083b861c78ea1b911f357d8e648b2c18beb" alt="calendar icon"><span>Calendar</span></a>
</li>
<li class="glue-header__item" aria-level="2">
<a class="glue-header__link" href="/docs/about/?hl=en" tabindex="0" data-category="main nav" data-action="more tools" data-label="docs"><img src="https://kstatic.googleusercontent.com/files/97ecc831526fbe8c60fe88ef0d7a6cbf06361809f0acf857326681f6a1f35740d3bd7d69bf4a5381f5c31a863bccace4d9d1660379182901f73d24ef137f6fb4" alt="docs icon"><span>Docs</span></a>
</li>
<li class="glue-header__item" aria-level="2">
<a class="glue-header__link" href="/sheets/about/?hl=en" tabindex="0" data-category="main nav" data-action="more tools" data-label="sheets"><img src="https://kstatic.googleusercontent.com/files/adf55cdf4c7f8fb38efbf8df6c2792660fbeff2d05be05f2ec8e9c265a179b51c64b9679d8aee00e09cad19ce419d90a2d999b82cea4200abbe78c73e6bfaacf" alt="sheets icon"><span>Sheets</span></a>
</li>
<li class="glue-header__item" aria-level="2">
<a class="glue-header__link" href="/slides/about/?hl=en" tabindex="0" data-category="main nav" data-action="more tools" data-label="slides"><img src="https://kstatic.googleusercontent.com/files/deedce50760a1686790a49aaa7fac8d4a5cea4fd0fcdd19baef121569c47473a2398e063d2e68fe017ba73bc9088268d3f2758793bd9eb25a4cbdf62aea0adfc" alt="slides icon"><span>Slides</span></a>
</li>
<li class="glue-header__item" aria-level="2">
<a class="glue-header__link" href="/forms/about/?hl=en" tabindex="0" data-category="main nav" data-action="more tools" data-label="forms"><img src="https://kstatic.googleusercontent.com/files/9f04faac24aed8bf8fb381029de951128d1d36373f89675265a6654d0c47b74b2d83a26b68b834ce2eea3bfe8001966f76895888138f135a81d099fc207c73bb" alt="forms icon"><span>Forms</span></a>
</li>
</ul>
</li>
</ul>
</nav>
</div>
<div class="glue-header__container mega-menu-background">
<section class="mega-menu mega-menu-hide">
<div class="glue-page">
<div class="glue-grid">
<div class="glue-grid__col glue-grid__col--span-7 mega-menu-list">
<div class="glue-grid">
<div class="glue-grid__col glue-grid__col--span-3">
<div class="glue-grid__col glue-grid__col--span-3 glue-mod-spacer-3-bottom">
<div class="mega-menu-item">
<div class="mega-menu-content">
<a aria-label="drive" class="mega-menu-link" href="https://www.google.com/drive/?hl=en" target="_blank" rel="noopener noreferrer" data-category="main nav" data-action="more tools" data-label="drive"><img src="https://kstatic.googleusercontent.com/files/d57b24106c34c7e50ef3d98423b94ddaf35ad2da73a9b9d4d12f52dbb9dd4c08c2957f6255ab8690d5ef0b32cff8287e09577d05e479d263e872160c4c9e8363" alt="drive icon" role="presentation"> Drive
<p class="glue-headline glue-headline--headline-6 headline mega-menu-content-title">
Cloud Storage
</p></a>
</div>
</div>
</div>
<div class="glue-grid__col glue-grid__col--span-3 glue-mod-spacer-3-bottom">
<div class="mega-menu-item">
<div class="mega-menu-content">
<a aria-label="gmail" class="mega-menu-link" href="https://www.google.com/gmail/about/?hl=en" target="_blank" rel="noopener noreferrer" data-category="main nav" data-action="more tools" data-label="gmail"><img src="https://kstatic.googleusercontent.com/files/6d2a2dbaad1a3fe4c323dd6a4688db96e47b423de4175611399a97dc5b64a4ad7490d703aa0af80f28936e842e9d2448b1d74a530a2fe479a306d92281678efa" alt="gmail icon" role="presentation"> Gmail
<p class="glue-headline glue-headline--headline-6 headline mega-menu-content-title">
Custom Business Email
</p></a>
</div>
</div>
</div>
<div class="glue-grid__col glue-grid__col--span-3 glue-mod-spacer-3-bottom">
<div class="mega-menu-item">
<div class="mega-menu-content">
<a aria-label="meet" class="mega-menu-link" href="https://apps.google.com/meet/?hl=en" target="_blank" rel="noopener noreferrer" data-category="main nav" data-action="more tools" data-label="meet"><img src="https://kstatic.googleusercontent.com/files/2c19e911a3a8404b51c5c92087c9df618f6903c14e4ba28ba4ec1fe577dec6c08e158172897eb0ed31738aac610409999fd2c4376548f1159f375387aadce233" alt="Meet icon" role="presentation"> Meet
<p class="glue-headline glue-headline--headline-6 headline mega-menu-content-title">
Video and voice conferencing
</p></a>
</div>
</div>
</div>
<div class="glue-grid__col glue-grid__col--span-3">
<div class="mega-menu-item">
<div class="mega-menu-content">
<a aria-label="calendar" class="mega-menu-link" href="https://workspace.google.com/products/calendar/?hl=en&utm_source=driveforwork&utm_medium=et&utm_content=calendar&utm_campaign=globalnav" target="_blank" rel="noopener noreferrer" data-category="main nav" data-action="more tools" data-label="calendar"><img src="https://kstatic.googleusercontent.com/files/e5bae7cd1a971c0ecd82e839e79e9c436d16842cada6dd01a51b81bd8c3722914d7dbb9bfd927abb4de8b11d6a4a7083b861c78ea1b911f357d8e648b2c18beb" alt="calendar icon" role="presentation"> Calendar
<p class="glue-headline glue-headline--headline-6 headline mega-menu-content-title">
Shared Calendars
</p></a>
</div>
</div>
</div>
</div>
<div class="glue-grid__col glue-grid__col--span-3">
<div class="glue-grid__col glue-grid__col--span-3 glue-mod-spacer-3-bottom">
<div class="mega-menu-item">
<div class="mega-menu-content">
<a aria-label="docs" class="mega-menu-link" href="/docs/about/?hl=en" data-category="main nav" data-action="more tools" data-label="docs"><img src="https://kstatic.googleusercontent.com/files/97ecc831526fbe8c60fe88ef0d7a6cbf06361809f0acf857326681f6a1f35740d3bd7d69bf4a5381f5c31a863bccace4d9d1660379182901f73d24ef137f6fb4" alt="docs icon" role="presentation"> Docs
<p class="glue-headline glue-headline--headline-6 headline mega-menu-content-title">
Word Processing
</p></a>
</div>
</div>
</div>
<div class="glue-grid__col glue-grid__col--span-3 glue-mod-spacer-3-bottom">
<div class="mega-menu-item">
<div class="mega-menu-content">
<a aria-label="sheets" class="mega-menu-link" href="/sheets/about/?hl=en" data-category="main nav" data-action="more tools" data-label="sheets"><img src="https://kstatic.googleusercontent.com/files/adf55cdf4c7f8fb38efbf8df6c2792660fbeff2d05be05f2ec8e9c265a179b51c64b9679d8aee00e09cad19ce419d90a2d999b82cea4200abbe78c73e6bfaacf" alt="sheets icon" role="presentation"> Sheets
<p class="glue-headline glue-headline--headline-6 headline mega-menu-content-title">
Spreadsheets
</p></a>
</div>
</div>
</div>
<div class="glue-grid__col glue-grid__col--span-3 glue-mod-spacer-3-bottom">
<div class="mega-menu-item">
<div class="mega-menu-content">
<a aria-label="slides" class="mega-menu-link" href="/slides/about/?hl=en" data-category="main nav" data-action="more tools" data-label="slides"><img src="https://kstatic.googleusercontent.com/files/deedce50760a1686790a49aaa7fac8d4a5cea4fd0fcdd19baef121569c47473a2398e063d2e68fe017ba73bc9088268d3f2758793bd9eb25a4cbdf62aea0adfc" alt="slides icon" role="presentation"> Slides
<p class="glue-headline glue-headline--headline-6 headline mega-menu-content-title">
Presentation Builder
</p></a>
</div>
</div>
</div>
<div class="glue-grid__col glue-grid__col--span-3">
<div class="mega-menu-item">
<div class="mega-menu-content">
<a aria-label="forms" class="mega-menu-link" href="/forms/about/?hl=en" data-category="main nav" data-action="more tools" data-label="forms"><img src="https://kstatic.googleusercontent.com/files/9f04faac24aed8bf8fb381029de951128d1d36373f89675265a6654d0c47b74b2d83a26b68b834ce2eea3bfe8001966f76895888138f135a81d099fc207c73bb" alt="forms icon" role="presentation"> Forms
<p class="glue-headline glue-headline--headline-6 headline mega-menu-content-title">
Survey builder
</p></a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="glue-grid__col glue-grid__col--span-4 mega-menu-right-panel">
<a href="https://workspace.google.com/?hl=en&utm_source=driveforwork&utm_medium=et&utm_content=learnmore&utm_campaign=globalnav" target="_blank" rel="noopener noreferrer" class="mega-menu-right-panel-link" data-category="main nav" data-action="more tools" data-label="learn more">
<div class="mega-menu-section">
<img src="https://kstatic.googleusercontent.com/files/7359d898838174e2e7f226ca7a0d0e457051d564ced52af60e70f8abd729f8153f461dc01eb4bc27e3b9bc15fbe6a86cbed0f1b08f627aff21c21d97d3a3382c" class="mega-menu-section-icon" alt="google workspace" role="presentation">
<p class="mega-menu-section-heading glue-mod-spacer-1-bottom">
Google Workspace
</p>
</div>
<p class="mega-menu-section-description">
An integrated suit of secure, cloud-native collaboration and productivity apps powered by Google AI.
</p>
<div class="mega-menu-section-link glue-link">
Learn More
</div></a>
</div>
</div><button class="mega-menu-btn-override" title="close" type="button"><svg role="img" class="mega-menu-close-btn glue-icon glue-icon--24px" title="close" alt="close">
<use href="/drive/static/img/glue-icons.svg#close"></use></svg></button>
</div>
</section>
</div>
<div class="glue-header__container glue-header__container--cta">
<div class="glue-header__cta">
<a href="https://accounts.google.com/ServiceLogin?service=wise&passive=true&continue=http%3A%2F%2Fdrive.google.com%2F%3Futm_source%3Den&utm_medium=button&utm_campaign=web&utm_content=gotodrive&usp=gtd&ltmpl=drive" class="sign-in--link" target="_blank" rel="noopener noreferrer" data-category="cta" data-action="sign in" data-label="header">Sign in</a> <a href="https://accounts.google.com/ServiceLogin?service=wise&passive=true&continue=http%3A%2F%2Fdrive.google.com%2F%3Futm_source%3Den&utm_medium=button&utm_campaign=web&utm_content=gotodrive&usp=gtd&ltmpl=drive" class="glue-button glue-button--medium-emphasis glue-header__cta-secondary" target="_blank" rel="noopener noreferrer" data-category="cta" data-action="go to drive" data-label="header">Go to Drive</a> <a href="https://workspace.google.com/intl/en/features?utm_source=driveforwork&utm_medium=et&utm_content=trydriveforyourteam&utm_campaign=globalnav" class="glue-button glue-button--high-emphasis hero-btn" target="_blank" rel="noopener noreferrer" data-category="cta" data-action="try drive for work" data-label="header">Try Drive for Work</a>
</div>
</div>
</div>
</div>
<div class="glue-header__drawer-backdrop"></div>
</header>
<main class="page-wrapper drive-page" id="content">
<div class="page-content">
<section class="drive-hero-section hero glue-mod-spacer-7-top glue-mod-spacer-6-bottom" id="js-overview">
<div class="glue-page">
<div class="glue-grid hero-wrapper">
<div class="glue-grid__col glue-grid__col--span-12 glue-grid__col--span-6-lg glue-grid__col--span-5-xl glue-grid__col--align-middle">
<div class="hero-content">
<h1 class="glue-headline glue-headline--headline-2 hero-heading">
Easy and secure access to your content
</h1>
<div class="glue-mod-spacer-3-top">
<p class="hero-description glue-mod-font-weight-regular">
Store, share, and collaborate on files and folders from your mobile device, tablet, or computer
</p>
</div>
<div class="hero-cta glue-mod-spacer-3-top" id="hero-cta-wrapper">
<a href="https://workspace.google.com/intl/en/features?utm_source=driveforwork&utm_medium=et&utm_content=trydriveforyourteam&utm_campaign=hero" class="glue-button glue-button--high-emphasis hero-btn" target="_blank" rel="noopener noreferrer" data-category="cta" data-action="try drive for work" data-label="hero">Try Drive for Work</a> <a href="https://accounts.google.com/ServiceLogin?service=wise&passive=true&continue=http%3A%2F%2Fdrive.google.com%2F%3Futm_source%3Den&utm_medium=button&utm_campaign=web&utm_content=gotodrive&usp=gtd&ltmpl=drive" class="glue-button glue-button--medium-emphasis" target="_blank" rel="noopener noreferrer" data-category="cta" data-action="go to drive" data-label="hero">Go to Drive</a>
</div>
<div class="hero-dropdown glue-mod-spacer-4-top">
Don't have an account?
<div class="hero-dropdown-container">
<button class="hero-dropdown-cta glue-button glue-button--low-emphasis">Sign up at no cost</button>
<ul class="hero-dropdown-list hide">
<li>
<a href="https://accounts.google.com/signup/v2/webcreateaccount?biz=false&flowName=GlifWebSignIn&flowEntry=SignUp&hl=en" target="_blank" rel="noopener noreferrer" data-category="cta" data-action="sign up" data-label="hero-dropdown">For my personal use</a>
</li>
<li>
<a href="https://workspace.google.com/getgws/chooseemail?utm_source=driveforwork&utm_medium=et&utm_content=forworkormybusiness&utm_campaign=hero&xsell=drive&hl=en" target="_blank" rel="noopener noreferrer" data-category="cta" data-action="try drive for work" data-label="hero-dropdown">For work or my business</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="hero-image glue-grid__col glue-grid__col--span-12 glue-grid__col--span-6-lg glue-grid__col--span-7-xl glue-grid__col--align-middle">
<picture class="hero-content-image"><source srcset="https://lh3.googleusercontent.com/6MmVl3TEiBeEJCFIIfzO5DIgengYGPCdhEe8M6lXA6_Eh_xsKHDL_K4CLC31dETfiCue1hFOEf30IkIqlbOStvTfYbY_G85oEtJHQqjgz6OSXco8Aw=w0-l80-sg-rj-c0xffffff, https://lh3.googleusercontent.com/6MmVl3TEiBeEJCFIIfzO5DIgengYGPCdhEe8M6lXA6_Eh_xsKHDL_K4CLC31dETfiCue1hFOEf30IkIqlbOStvTfYbY_G85oEtJHQqjgz6OSXco8Aw=w0-l80-sg-rj-c0xffffff 2x"> <img src="https://lh3.googleusercontent.com/6MmVl3TEiBeEJCFIIfzO5DIgengYGPCdhEe8M6lXA6_Eh_xsKHDL_K4CLC31dETfiCue1hFOEf30IkIqlbOStvTfYbY_G85oEtJHQqjgz6OSXco8Aw=w-l80-sg-rj-c0xffffff" class="hero-desktop-image" alt="drive-hero"></picture>
</div>
</div>
</div>
</section>
<section class="section-page-break glue-mod-spacer-6-bottom glue-mod-spacer-3-top">
<div class="glue-page">
<hr aria-hidden="true">
<div class="glue-mod-text-center glue-mod-spacer-4-top glue-mod-spacer-1-bottom glue-headline glue-headline--headline-6">
<a href="#features" class="nav-features">See what you can do with Google Drive <svg role="presentation" aria-hidden="true" class="glue-icon glue-icon--24px">
<use href="/drive/static/img/glue-icons.svg#expand-more"></use></svg></a>
</div>
</div>
</section>
<section class="drive-features-section features" id="js-features">
<div class="glue-page">
<div class="glue-grid glue-mod-spacer-7-bottom features-wrapper">
<div class="glue-grid__col glue-grid__col--span-12 glue-grid__col--span-5-xl glue-grid__col--span-6-lg glue-mod-order-1-sm glue-mod-order-4-lg glue-mod-order-3-xl features-column-item">
<div class="features-content">
<h2 class="glue-headline glue-headline--headline-3 features-content-heading">
Built-in protections against malware, spam, and ransomware
</h2>
<div class="glue-mod-font-weight-regular glue-mod-spacer-3-top features-content-text">
<p class="features-text glue-mod-font-weight-regular">
Drive can provide encrypted and secure access to your files. Files shared with you can be proactively scanned and removed when malware, spam, ransomware, or phishing is detected. And Drive is cloud-native, which eliminates the need for local files and can minimize risk to your devices.
</p>
</div>
</div>
</div>
<div class="glue-grid__col glue-grid__col--span-12 glue-grid__col--span-7-xl glue-grid__col--span-6-lg glue-mod-order-2-sm glue-mod-order-3-lg glue-mod-order-2-xl glue-grid__col--align-middle">
<picture class="features-desktop"><source srcset="https://lh3.googleusercontent.com/NJb2FyRsLOjbmSf0cCilv3XloxJ1GBvynoI-Wn7lRVDtHzEN_L1iHDmarKxo3qZKSoyudmqe909CJUTyCAtU75WLSrrHAkbEbQpPztDXZhMbmaR7E0SR=w0-l80-sg-rj-c0xffffff, https://lh3.googleusercontent.com/NJb2FyRsLOjbmSf0cCilv3XloxJ1GBvynoI-Wn7lRVDtHzEN_L1iHDmarKxo3qZKSoyudmqe909CJUTyCAtU75WLSrrHAkbEbQpPztDXZhMbmaR7E0SR=w0-l80-sg-rj-c0xffffff 2x"> <img src="https://lh3.googleusercontent.com/NJb2FyRsLOjbmSf0cCilv3XloxJ1GBvynoI-Wn7lRVDtHzEN_L1iHDmarKxo3qZKSoyudmqe909CJUTyCAtU75WLSrrHAkbEbQpPztDXZhMbmaR7E0SR=w-l80-sg-rj-c0xffffff" class="features-desktop-image" alt="Drive Safe Content"></picture> <picture class="features-mobile"><source srcset="https://lh3.googleusercontent.com/qHl5hwZQ3Mq4iyxz0rXV-oWGDAD6A67DsnlETqDSWG5cyP6IR_TurqbKDRnEwCyvlMfEPZ5JPMqJg2uKIuvwfNh2qD7-YDldNnq7ZxH_TqOGotNb39hH=w0-l80-sg-rj-c0xffffff, https://lh3.googleusercontent.com/qHl5hwZQ3Mq4iyxz0rXV-oWGDAD6A67DsnlETqDSWG5cyP6IR_TurqbKDRnEwCyvlMfEPZ5JPMqJg2uKIuvwfNh2qD7-YDldNnq7ZxH_TqOGotNb39hH=w0-l80-sg-rj-c0xffffff 2x"> <img src="https://lh3.googleusercontent.com/qHl5hwZQ3Mq4iyxz0rXV-oWGDAD6A67DsnlETqDSWG5cyP6IR_TurqbKDRnEwCyvlMfEPZ5JPMqJg2uKIuvwfNh2qD7-YDldNnq7ZxH_TqOGotNb39hH=w-l80-sg-rj-c0xffffff" class="features-mobile-image" alt="Drive Safe Content"></picture>
</div>
</div>
<div class="glue-grid glue-mod-spacer-7-bottom features-wrapper">
<div class="glue-grid__col glue-grid__col--span-1-xl glue-grid__col--span-0-md glue-grid__col--span-1-lg"></div>
<div class="glue-grid__col glue-grid__col--span-12 glue-grid__col--span-5-xl glue-grid__col--span-5-lg glue-mod-order-1-sm glue-mod-order-2-xl glue-mod-order-3-lg features-column-item">
<div class="features-content">
<h2 class="glue-headline glue-headline--headline-3 features-content-heading">
People-first collaboration apps to supercharge teamwork
</h2>
<div class="glue-mod-font-weight-regular glue-mod-spacer-3-top features-content-text">
<p class="features-text glue-mod-font-weight-regular">
Drive integrates with <a href="https://www.google.com/docs/about/" target="_self">Docs</a>, <a href="https://www.google.com/sheets/about/" target="_self">Sheets</a>, and <a href="https://www.google.com/slides/about/" target="_self">Slides</a>, cloud-native collaboration apps that enable your team to create content and collaborate more effectively in real time.
</p>
</div>
</div>
</div>
<div class="glue-grid__col glue-grid__col--span-12 glue-grid__col--span-7-xl glue-grid__col--span-7-lg glue-mod-order-2-sm glue-mod-order-4-lg glue-mod-order-3-xl glue-grid__col--align-middle features-offset">
<picture class="features-desktop"><source srcset="https://lh3.googleusercontent.com/yCtJQGVMT5x-OVFBA4pAG3aUkGM5-KOl9Nb8w5Ah0ipsKP4Vupp0yRyWGOaQOx4ey5FsSxQLh8_KqMViHegT9uHmhb0elqAjXW27UU8zsQmC57wMRQ=w0-l80-sg-rj-c0xffffff, https://lh3.googleusercontent.com/yCtJQGVMT5x-OVFBA4pAG3aUkGM5-KOl9Nb8w5Ah0ipsKP4Vupp0yRyWGOaQOx4ey5FsSxQLh8_KqMViHegT9uHmhb0elqAjXW27UU8zsQmC57wMRQ=w0-l80-sg-rj-c0xffffff 2x"> <img src="https://lh3.googleusercontent.com/yCtJQGVMT5x-OVFBA4pAG3aUkGM5-KOl9Nb8w5Ah0ipsKP4Vupp0yRyWGOaQOx4ey5FsSxQLh8_KqMViHegT9uHmhb0elqAjXW27UU8zsQmC57wMRQ=w-l80-sg-rj-c0xffffff" class="features-desktop-image" alt="Drive Supercharge"></picture> <picture class="features-mobile"><source srcset="https://lh3.googleusercontent.com/LWkfNDqPOyofW8LdOka5lleT0ZBAyYVgO7IUlRJR8VeTGSKChb-f0p2PHmF2jQuiijMMNn-L-8B83PXKyKHbEc6e3Kd4Hw1AwNZN66tReFZ7tqbXlQ=w0-l80-sg-rj-c0xffffff, https://lh3.googleusercontent.com/LWkfNDqPOyofW8LdOka5lleT0ZBAyYVgO7IUlRJR8VeTGSKChb-f0p2PHmF2jQuiijMMNn-L-8B83PXKyKHbEc6e3Kd4Hw1AwNZN66tReFZ7tqbXlQ=w0-l80-sg-rj-c0xffffff 2x"> <img src="https://lh3.googleusercontent.com/LWkfNDqPOyofW8LdOka5lleT0ZBAyYVgO7IUlRJR8VeTGSKChb-f0p2PHmF2jQuiijMMNn-L-8B83PXKyKHbEc6e3Kd4Hw1AwNZN66tReFZ7tqbXlQ=w-l80-sg-rj-c0xffffff" class="features-mobile-image" alt="Drive Supercharge"></picture>
</div>
</div>
<div class="glue-grid glue-mod-spacer-7-bottom features-wrapper">
<div class="glue-grid__col glue-grid__col--span-12 glue-grid__col--span-5-xl glue-grid__col--span-6-lg glue-mod-order-1-sm glue-mod-order-4-lg glue-mod-order-3-xl features-column-item">
<div class="features-content">
<h2 class="glue-headline glue-headline--headline-3 features-content-heading">
Integration with the tools and apps your team is already using
</h2>
<div class="glue-mod-font-weight-regular glue-mod-spacer-3-top features-content-text">
<p class="features-text glue-mod-font-weight-regular">
Drive integrates with and complements your team’s existing technology. Collaborate in Microsoft Office files without the need to convert file formats, and edit and store over 100 additional file types, including PDFs, CAD files, images, and more.
</p>
</div>
</div>
</div>
<div class="glue-grid__col glue-grid__col--span-12 glue-grid__col--span-7-xl glue-grid__col--span-6-lg glue-mod-order-2-sm glue-mod-order-3-lg glue-mod-order-2-xl glue-grid__col--align-middle">
<picture class="features-desktop"><source srcset="https://lh3.googleusercontent.com/KmMK86vU4Q4_etBMCy-VI7O9D08C-xqdXYFxjdxvAKXhLk8AUDcgwCV27ykWNu3H4gCf8QNLEYCJcSQsUjMD0qr6KgF0AbZywYS2kQGcW7p9lipDa4_q=w0-l80-sg-rj-c0xffffff, https://lh3.googleusercontent.com/KmMK86vU4Q4_etBMCy-VI7O9D08C-xqdXYFxjdxvAKXhLk8AUDcgwCV27ykWNu3H4gCf8QNLEYCJcSQsUjMD0qr6KgF0AbZywYS2kQGcW7p9lipDa4_q=w0-l80-sg-rj-c0xffffff 2x"> <img src="https://lh3.googleusercontent.com/KmMK86vU4Q4_etBMCy-VI7O9D08C-xqdXYFxjdxvAKXhLk8AUDcgwCV27ykWNu3H4gCf8QNLEYCJcSQsUjMD0qr6KgF0AbZywYS2kQGcW7p9lipDa4_q=w-l80-sg-rj-c0xffffff" class="features-desktop-image" alt="Drive Tools Integration"></picture> <picture class="features-mobile"><source srcset="https://lh3.googleusercontent.com/Ov_8j5WXRgn8urlt_qQw7nJL1CF0kOgaBFODtjNSXWeyKeYQTpl0nqYsyjUovbhVgMC9DpKMys4z29h8y4d4z415lWoUnyoNyr_MemXnrCobrl490kA=w0-l80-sg-rj-c0xffffff, https://lh3.googleusercontent.com/Ov_8j5WXRgn8urlt_qQw7nJL1CF0kOgaBFODtjNSXWeyKeYQTpl0nqYsyjUovbhVgMC9DpKMys4z29h8y4d4z415lWoUnyoNyr_MemXnrCobrl490kA=w0-l80-sg-rj-c0xffffff 2x"> <img src="https://lh3.googleusercontent.com/Ov_8j5WXRgn8urlt_qQw7nJL1CF0kOgaBFODtjNSXWeyKeYQTpl0nqYsyjUovbhVgMC9DpKMys4z29h8y4d4z415lWoUnyoNyr_MemXnrCobrl490kA=w-l80-sg-rj-c0xffffff" class="features-mobile-image" alt="Drive Tools Integration"></picture>
</div>
</div>
<div class="glue-grid glue-mod-spacer-7-bottom features-wrapper">
<div class="glue-grid__col glue-grid__col--span-12 glue-grid__col--span-5-xl glue-grid__col--span-6-lg glue-mod-order-1-sm glue-mod-order-2-xl glue-mod-order-3-lg features-column-item">
<div class="features-content">
<h2 class="glue-headline glue-headline--headline-3 features-content-heading">
Google’s Search and AI technology helps your team move faster
</h2>
<div class="glue-mod-font-weight-regular glue-mod-spacer-3-top features-content-text">
<p class="features-text glue-mod-font-weight-regular">
Google’s powerful search capabilities are embedded in Drive and offer speed, reliability, and collaboration. And features like Drive search chips help your team find files fast by quickly surfacing more relevant results.
</p>
</div>
</div>
</div>
<div class="glue-grid__col glue-grid__col--span-12 glue-grid__col--span-7-xl glue-grid__col--span-6-lg glue-mod-order-2-sm glue-mod-order-4-lg glue-mod-order-3-xl glue-grid__col--align-middle features-offset">
<picture class="features-desktop"><source srcset="https://lh3.googleusercontent.com/a6eNE5cl4T8gQ_3qBPaKlHJhTuGYoPPCi8G43zuzir5eXbSXmC_PmZHQgMd5dFoV-tsTZs-g6a8mUL_OY_4SH5R_M4ssXq124fNXKpi6pP5LcOLUQwo=w0-l80-sg-rj-c0xffffff, https://lh3.googleusercontent.com/a6eNE5cl4T8gQ_3qBPaKlHJhTuGYoPPCi8G43zuzir5eXbSXmC_PmZHQgMd5dFoV-tsTZs-g6a8mUL_OY_4SH5R_M4ssXq124fNXKpi6pP5LcOLUQwo=w0-l80-sg-rj-c0xffffff 2x"> <img src="https://lh3.googleusercontent.com/a6eNE5cl4T8gQ_3qBPaKlHJhTuGYoPPCi8G43zuzir5eXbSXmC_PmZHQgMd5dFoV-tsTZs-g6a8mUL_OY_4SH5R_M4ssXq124fNXKpi6pP5LcOLUQwo=w-l80-sg-rj-c0xffffff" class="features-desktop-image" alt="Drive search"></picture> <picture class="features-mobile"><source srcset="https://lh3.googleusercontent.com/om5VZ5E7gtcOnqA0ry-FQV4GZQ2IN1Mam5YLZnv_8o8-ljoNgi_J2YfeLlxdeoSEjUtsVgJ9powqOsozzBmWNS_HYU83AykQw3XAWYOrQdVScO0YEH0=w0-l80-sg-rj-c0xffffff, https://lh3.googleusercontent.com/om5VZ5E7gtcOnqA0ry-FQV4GZQ2IN1Mam5YLZnv_8o8-ljoNgi_J2YfeLlxdeoSEjUtsVgJ9powqOsozzBmWNS_HYU83AykQw3XAWYOrQdVScO0YEH0=w0-l80-sg-rj-c0xffffff 2x"> <img src="https://lh3.googleusercontent.com/om5VZ5E7gtcOnqA0ry-FQV4GZQ2IN1Mam5YLZnv_8o8-ljoNgi_J2YfeLlxdeoSEjUtsVgJ9powqOsozzBmWNS_HYU83AykQw3XAWYOrQdVScO0YEH0=w-l80-sg-rj-c0xffffff" class="features-mobile-image" alt="Drive search"></picture>
</div>
</div>
</div>
</section>
<section class="glue-page drive__customers glue-mod-text-center" id="js-customers">
<div class="glue-page">
<div class="drive__customers-heading glue-mod-spacer-0-bottom">
<h2 class="glue-headline glue-headline--headline-2">
Thousands of teams are already using Drive to revolutionize the way they work
</h2>
</div>
</div>
</section>
<section class="drive-logo-garden-section glue-mod-text-center glue-mod-spacer-7-top">
<div class="glue-page">
<div class="logo-garden glue-mod-spacer-6-top">
<img src="https://kstatic.googleusercontent.com/files/dde2c6d0199759ba1261fd84bf5f2d2d5a46bf1ceb7c8c3b03f247a53c8f0c6c2b6e62f8c2c2192c24a961f2e8c7d4f29dd6b2890e326fb1aa396c9dbdd5f3eb" alt="broadcom"> <img src="https://kstatic.googleusercontent.com/files/d03551fdf2c8749e3cb46bd9e57f81f1821db06f2f781fb8548069d64383e064809e0244690b29cf93426f3270d5d9d12f2341dae9dcf357d9f88c6e0005f5ad" alt="freedom"> <img src="https://kstatic.googleusercontent.com/files/729e1fb4793a8ba1290e61058c17ad0eca27d2022a971e24544e9a82e8346bfd12909939458c874ca23d3c84a246070258587103a9675739036c3985f77b992c" alt="sanmina"> <img src="https://kstatic.googleusercontent.com/files/08e84da11f0911a81fe26be9c9667a1be1d7b5121c34ed6e730f5fb328215c7273603f3573bbe2d90536f2fc2856c72a6eb6b8fb209cd688721952a81bffbc4a" alt="whirlpool">
</div>
</div>
</section>
<section class="glue-page drive__customers glue-mod-text-center" id="js-customers">
<div class="glue-page"></div>
<section class="glue-mod-spacer-0-top">
<div id="glue-carousel-drive" class="glue-carousel glue-carousel--simple js-customers-carousel" aria-label="Carousel description">
<div class="glue-carousel__viewport">
<div class="glue-carousel__list">
<div class="glue-carousel__item" id="glue-carousel-1" aria-label="Slide 1">
<div class="glue-tile__header glue-tile__header--icon">
<img src="https://kstatic.googleusercontent.com/files/5a11c2b63159b3919b3be118ace5a7945144ce95d661c7e4bcb3948f3c6ee6d6e86dc70d5b1bcf995734be8ebb3589b8ea44347dfa8a530fc1ab118bfd65eba0" alt="salesforce icon">
</div>
<div class="content-heading">
<h3 class="glue-headline glue-headline--headline-4">
“I never worry about finding a document. Everything’s in Drive, I can access it anywhere, and that’s been revolutionary.”
</h3>
</div>
<div class="content-link">
<a aria-label="Read Story" href="https://workspace.google.com/intl/en/customers/salesforce.html?utm_source=driveforwork&utm_medium=et&utm_content=salesforce&utm_campaign=body" target="_blank" rel="noopener noreferrer">Read Story</a>
</div>
</div>
<div class="glue-carousel__item" id="glue-carousel-1" aria-label="Slide 1">
<div class="glue-tile__header glue-tile__header--icon">
<img src="https://kstatic.googleusercontent.com/files/256cb1d892505c508ba4cb72b5f87da519f292af5ae0bfbf37bcf0f8b70bdc92453b6c6019fcb80d2fa1e2de5afd67d4578863228ad3356e6d4a593c568ef478" alt="cardinal group icon">
</div>
<div class="content-heading">
<h3 class="glue-headline glue-headline--headline-4">
“Most of our team members were already familiar with Drive and found it very intuitive and easy to use, so change management was minimal and we were quickly up and running.”
</h3>
</div>
<div class="content-link">
<a aria-label="Read Story" href="https://cloud.google.com/blog/products/drive/cardinal-group-relies-on-drive-and-g-suite-to-maximize-collaboration" target="_blank" rel="noopener noreferrer">Read Story</a>
</div>
</div>
<div class="glue-carousel__item" id="glue-carousel-1" aria-label="Slide 1">
<div class="glue-tile__header glue-tile__header--icon">
<img src="https://kstatic.googleusercontent.com/files/975eee0a7d86b77c45aeb490139651fee3b52e9007eb782cc600b1ee0281669bb38bb861b551aaa12af3d139053d661d6b96631be0dbb0c937d9f9cb0c18c1f1" alt="ibotta icon">
</div>
<div class="content-heading">
<h3 class="glue-headline glue-headline--headline-4">
“Real-time collaboration with Google Docs and Drive is a must-have...if we ever tried to move employees off it, it would be a torches and pitchforks situation—complete chaos.”
</h3>
</div>
<div class="content-link">
<a aria-label="Read Story" href="https://services.google.com/fh/files/misc/google_drive_customer_story_ibotta.pdf" target="_blank" rel="noopener noreferrer">Read Story</a>
</div>
</div>
<div class="glue-carousel__item" id="glue-carousel-1" aria-label="Slide 1">
<div class="glue-tile__header glue-tile__header--icon">
<img src="https://kstatic.googleusercontent.com/files/5c931e9705f5065e5cd665d4878da8eb3e8d90dbcdebb2ce04d37776e6cfba0339ed8357d13e4dd72628a15bc9265012d95e7d0d89d92b4a7d1f87bd966a69c0" alt="atb financial icon">
</div>
<div class="content-heading">
<h3 class="glue-headline glue-headline--headline-4">
“Google is revolutionizing collaboration and individual productivity through AI. Employees can focus more on creating value for our customers and less on mundane tasks.”
</h3>
</div>
<div class="content-link">
<a aria-label="Read Story" href="https://workspace.google.com/intl/en/customers/atb-financial.html?utm_source=driveforwork&utm_medium=et&utm_content=atbfinancial&utm_campaign=body" target="_blank" rel="noopener noreferrer">Read Story</a>
</div>
</div>
</div>
</div><button class="glue-carousel__button glue-carousel__button--prev" aria-label="Go to the previous slide"><svg role="presentation" aria-hidden="true" class="glue-icon glue-icon--32px">
<use href="/drive/static/img/glue-icons.svg#chevron-left"></use></svg></button> <button class="glue-carousel__button glue-carousel__button--next" aria-label="Go to the next slide"><svg role="presentation" aria-hidden="true" class="glue-icon glue-icon--32px">
<use xlink:href="/drive/static/img/glue-icons.svg#chevron-right"></use></svg></button> <!-- Navigation dots -->
<ul class="glue-carousel__navigation" aria-label="Choose slide to display"></ul>
</div>
</section>
</section>
<section class="drive-integrations-section glue-mod-text-center glue-mod-spacer-7-top">
<div class="glue-page">
<div class="logo-garden-heading">
<h2 class="centered-content-heading glue-headline glue-headline--headline-3">
Drive integrates with the tools your team is already using
</h2>
</div>
<div class="logo-garden glue-mod-spacer-6-top">
<ul class="logo-garden-links">
<li>
<a href="https://acrobat.adobe.com/us/en/business/integrations/google-drive.html" target="_blank" rel="noopener noreferrer" aria-label="adobe"><img src="https://kstatic.googleusercontent.com/files/a452529e201b5a2df2ee78aaa26196adb2f3d770ad1b41a7aab87af4b2298415469feced5343d47685651de742548ee68ccb169ac30cd7adb1eddd0c1abce048" alt="adobe"></a>
</li>
<li>
<a href="https://marketplace.atlassian.com/apps/1216484/google-drive-docs-for-confluence?hosting=cloud&tab=overview" target="_blank" rel="noopener noreferrer" aria-label="atlassian"><img src="https://kstatic.googleusercontent.com/files/60dd2ade31bb7911a43bd12c9e3f2016d6eac9f2c9a9fa1d5236ab7ca36f4d4514e46f01d3988db306c9d26daafb152e5c6de494e94b449804d34e37ee44c7b9" alt="atlassian"></a>
</li>
<li>
<a href="https://blogs.autodesk.com/autocad/autocad-2021/" target="_blank" rel="noopener noreferrer" aria-label="autodesk"><img src="https://kstatic.googleusercontent.com/files/a71fde568bffcc2d8c0ed236d5875634ccad9aadc73b30ed310bdb4355d2de80ae27a51c3597febe87e409eddc8c744327a454e709fd100925e9e5176fa7a3af" alt="autodesk"></a>
</li>
<li>
<a href="https://www.docusign.com/partner/docusign-google-drive" target="_blank" rel="noopener noreferrer" aria-label="docusign"><img src="https://kstatic.googleusercontent.com/files/c7207b3783c876e2b402ab1a75650368c4a4591cadee2184ffaf923179b3218d4d9a08aff8b80b78e36a47d160a8744f2372cdd51072491155609bf16534c405" alt="docusign"></a>
</li>
<li>
<a href="https://help.salesforce.com/articleView?id=admin_files_connect_google_xds.htm&type=5" target="_blank" rel="noopener noreferrer" aria-label="salesforce"><img src="https://kstatic.googleusercontent.com/files/ddf9229b8e8e00daa490de51a7227de227f3b13db0b70a50dfff3de5088f643f0402ade09e63203a8e1b7132392d5db233e9a5f6c00fd57b47cebcdfd4853a8f" alt="salesforce"></a>
</li>
<li>
<a href="https://slack.com/apps/A6NL8MJ6Q-google-drive" target="_blank" rel="noopener noreferrer" aria-label="slack"><img src="https://kstatic.googleusercontent.com/files/f9d1c7f501c4888a2f60647d23ce9f1c76377f3f9b910cfb05db4e3bb17621d1dbab0d26f2870996ff296b7bbbd87171b91e288ba0c09aa0623bc6441e9aab6a" alt="slack"></a>
</li>
</ul>
</div>
</div>
</section>
<section class="drive-pricing-section pricing glue-mod-text-center" id="js-pricing">
<div class="glue-page">
<h2 class="glue-headline glue-headline--headline-3">
Find the plan that’s right for you
</h2>
<h3 class="glue-headline glue-headline--headline-6 glue-mod-spacer-2-top pricing-subheading">
Google Drive is a part of Google Workspace
</h3>
<div class="glue-mod-spacer-3-top glue-mod-spacer-2-bottom">
<p class="glue-eyebrow pricing-eyebrow glue-mod-font-weight-medium">
Every plan includes
</p>
<ul class="pricing-product-icons">
<li>
<a href="https://workspace.google.com/products/docs/?hl=en&utm_source=driveforwork&utm_medium=et&utm_content=docs&utm_campaign=body" target="_blank" rel="noopener noreferrer" data-category="cta" data-action="docs" data-label="pricing" title="Docs"><img src="https://kstatic.googleusercontent.com/files/97ecc831526fbe8c60fe88ef0d7a6cbf06361809f0acf857326681f6a1f35740d3bd7d69bf4a5381f5c31a863bccace4d9d1660379182901f73d24ef137f6fb4" alt="docs icon" role="presentation"></a>
<p class="glue-mod-spacer-1-top" aria-hidden="true">
Docs
</p>
</li>
<li>
<a href="https://workspace.google.com/products/sheets/?hl=en&utm_source=driveforwork&utm_medium=et&utm_content=sheets&utm_campaign=body" target="_blank" rel="noopener noreferrer" data-category="cta" data-action="sheets" data-label="pricing" title="Sheets"><img src="https://kstatic.googleusercontent.com/files/adf55cdf4c7f8fb38efbf8df6c2792660fbeff2d05be05f2ec8e9c265a179b51c64b9679d8aee00e09cad19ce419d90a2d999b82cea4200abbe78c73e6bfaacf" alt="sheets icon" role="presentation"></a>
<p class="glue-mod-spacer-1-top" aria-hidden="true">
Sheets
</p>
</li>
<li>
<a href="https://workspace.google.com/products/slides/?hl=en&utm_source=driveforwork&utm_medium=et&utm_content=slides&utm_campaign=body" target="_blank" rel="noopener noreferrer" data-category="cta" data-action="slides" data-label="pricing" title="Slides"><img src="https://kstatic.googleusercontent.com/files/deedce50760a1686790a49aaa7fac8d4a5cea4fd0fcdd19baef121569c47473a2398e063d2e68fe017ba73bc9088268d3f2758793bd9eb25a4cbdf62aea0adfc" alt="slides icon" role="presentation"></a>
<p class="glue-mod-spacer-1-top" aria-hidden="true">
Slides
</p>
</li>
<li>
<a href="https://workspace.google.com/products/forms/?hl=en&utm_source=driveforwork&utm_medium=et&utm_content=forms&utm_campaign=body" target="_blank" rel="noopener noreferrer" data-category="cta" data-action="forms" data-label="pricing" title="Forms"><img src="https://kstatic.googleusercontent.com/files/9f04faac24aed8bf8fb381029de951128d1d36373f89675265a6654d0c47b74b2d83a26b68b834ce2eea3bfe8001966f76895888138f135a81d099fc207c73bb" alt="forms icon" role="presentation"></a>
<p class="glue-mod-spacer-1-top" aria-hidden="true">
Forms
</p>
</li>
<li>
<a href="https://workspace.google.com/products/keep/?hl=en&utm_source=driveforwork&utm_medium=et&utm_content=keep&utm_campaign=body" target="_blank" rel="noopener noreferrer" data-category="cta" data-action="keep" data-label="pricing" title="Keep"><img src="https://kstatic.googleusercontent.com/files/ddb573245976a21aba0f45d4fe548fdc89318ae8707c25e75e9c3940b6568bd44069b57c08698007f94d19c8d558ca994528710c6a9c3f8b932dd83f391b16e6" alt="keep icon" role="presentation"></a>
<p class="glue-mod-spacer-1-top" aria-hidden="true">
Keep
</p>
</li>
<li>
<a href="https://workspace.google.com/products/sites/?hl=en&utm_source=driveforwork&utm_medium=et&utm_content=sites&utm_campaign=body" target="_blank" rel="noopener noreferrer" data-category="cta" data-action="sites" data-label="pricing" title="Sites"><img src="https://kstatic.googleusercontent.com/files/ae343be0ecf95ae733f568f2fdf30ddb0a1da74ca00721a5bea239d0949759558b60b9ba5bf902929563695b793f32eb57e4a0ac0d67129836d973b359b2d596" alt="sites icon" role="presentation"></a>
<p class="glue-mod-spacer-1-top" aria-hidden="true">
Sites
</p>
</li>
<li>
<a href="https://workspace.google.com/products/drive/?hl=en&utm_source=driveforwork&utm_medium=et&utm_content=drive&utm_campaign=body" target="_blank" rel="noopener noreferrer" data-category="cta" data-action="drive" data-label="pricing" title="Drive"><img src="https://kstatic.googleusercontent.com/files/d57b24106c34c7e50ef3d98423b94ddaf35ad2da73a9b9d4d12f52dbb9dd4c08c2957f6255ab8690d5ef0b32cff8287e09577d05e479d263e872160c4c9e8363" alt="drive icon" role="presentation"></a>
<p class="glue-mod-spacer-1-top" aria-hidden="true">
Drive
</p>
</li>
<li>
<a href="https://workspace.google.com/products/gmail/?hl=en&utm_source=driveforwork&utm_medium=et&utm_content=gmail&utm_campaign=body" target="_blank" rel="noopener noreferrer" data-category="cta" data-action="gmail" data-label="pricing" title="Gmail"><img src="https://kstatic.googleusercontent.com/files/6d2a2dbaad1a3fe4c323dd6a4688db96e47b423de4175611399a97dc5b64a4ad7490d703aa0af80f28936e842e9d2448b1d74a530a2fe479a306d92281678efa" alt="gmail icon" role="presentation"></a>
<p class="glue-mod-spacer-1-top" aria-hidden="true">
Gmail
</p>
</li>
<li>
<a href="https://workspace.google.com/products/meet/?hl=en&utm_source=driveforwork&utm_medium=et&utm_content=meet&utm_campaign=body" target="_blank" rel="noopener noreferrer" data-category="cta" data-action="meet" data-label="pricing" title="Meet"><img src="https://kstatic.googleusercontent.com/files/2c19e911a3a8404b51c5c92087c9df618f6903c14e4ba28ba4ec1fe577dec6c08e158172897eb0ed31738aac610409999fd2c4376548f1159f375387aadce233" alt="Meet icon" role="presentation"></a>
<p class="glue-mod-spacer-1-top" aria-hidden="true">
Meet
</p>
</li>
<li>
<a href="https://workspace.google.com/products/calendar/?hl=en&utm_source=driveforwork&utm_medium=et&utm_content=calendar&utm_campaign=body" target="_blank" rel="noopener noreferrer" data-category="cta" data-action="calendar" data-label="pricing" title="Calendar"><img src="https://kstatic.googleusercontent.com/files/e5bae7cd1a971c0ecd82e839e79e9c436d16842cada6dd01a51b81bd8c3722914d7dbb9bfd927abb4de8b11d6a4a7083b861c78ea1b911f357d8e648b2c18beb" alt="calendar icon" role="presentation"></a>
<p class="glue-mod-spacer-1-top" aria-hidden="true">
Calendar
</p>
</li>
<li>
<a href="https://workspace.google.com/products/chat/?hl=en&utm_source=driveforwork&utm_medium=et&utm_content=chat&utm_campaign=body" target="_blank" rel="noopener noreferrer" data-category="cta" data-action="chat" data-label="pricing" title="Chat"><img src="https://kstatic.googleusercontent.com/files/6ab61ad546b8f76d3721655674c108fa553d44865bb62881003aef4826170b5fe07f25bc88633b46c2397cdab297120d695695a76eb7afb008a2187ad021a2e9" alt="chats icon" role="presentation"></a>
<p class="glue-mod-spacer-1-top" aria-hidden="true">
Chat
</p>
</li>
</ul>
</div>
<table class="glue-table glue-table--comparisontable pricing-plans glue-mod-spacer-5-top">
<thead class="section-sticky">
<tr>
<th>
<p>
<a href="https://workspace.google.com/intl/en/features/?utm_source=driveforwork&utm_medium=et&utm_content=trydriveforyourteam&utm_campaign=pricing" target="_blank" rel="noopener noreferrer" data-category="cta" data-action="try docs for work" data-label="pricing">Try Drive for Work</a>
</p>
</th>
<th>
<h4 class="glue-headline glue-headline--headline-5 glue-mod-spacer-1-bottom pricing-plans-column-heading">
For Personal <span class="pricing-plans-heading-suffix">(no cost)</span>
</h4>
<p class="pricing-plans-header-cta">
<a href="https://accounts.google.com/ServiceLogin?service=wise&passive=true&continue=http%3A%2F%2Fdrive.google.com%2F%3Futm_source%3Den&utm_medium=button&utm_campaign=web&utm_content=gotodrive&usp=gtd&ltmpl=drive" class="glue-button glue-button--medium-emphasis go-to-docs" target="_blank" rel="noopener noreferrer" data-category="cta" data-action="go to drive" data-label="pricing">Go to Drive</a>
</p>
</th>
<th>
<h4 class="glue-headline glue-headline--headline-5 glue-mod-spacer-1-bottom pricing-plans-column-heading">
Business Standard
</h4>
<p class="pricing-plans-price glue-mod-font-weight-regular">
<span>$12</span> <span>USD</span>
</p><span class="pricing-plans-criteria glue-mod-font-weight-regular">/user/month</span>
<p class="pricing-plans-header-cta">
<a href="https://workspace.google.com/signup/businessstandard/welcome?utm_source=driveforwork&utm_medium=et&utm_content=getstarted&utm_campaign=pricing&hl=en" class="glue-button glue-button--high-emphasis" target="_blank" rel="noopener noreferrer" data-category="cta" data-action="get started" data-label="pricing">Get started</a>
</p>
<p class="pricing-plans-header-cta">
<a href="https://workspace.google.com/pricing.html?utm_source=driveforwork&utm_medium=et&utm_content=seemoreplans&utm_campaign=pricing&hl=en" class="pricing-plans-see-more" target="_blank" rel="noopener noreferrer" data-category="cta" data-action="see more plans" data-label="pricing">See more plans</a>
</p>
</th>
</tr>
</thead>
<tbody>
<tr>
<td class="pricing-feature">
<div class="pricing-feature-wrap">
<img src="https://kstatic.googleusercontent.com/files/f68020013a9353617a2fca28b197c46b3983aaf07b02aead0035d49ea2e1bbe1fec94b5b473ae7fbb90df20d59cc901da44a05097220c7f9c64b42e638c5158c" class="pricing-feature-icon" alt="Google Drive" role="presentation">
<div class="pricing-feature-wrap-content">
<strong class="glue-mod-font-weight-bold pricing-feature-wrap-heading">Drive</strong>
<p class="pricing-feature-wrap-description">
Secure cloud storage
</p>
</div>
</div>
</td>
<td>
<p class="glue-mod-font-weight-medium pricing-feature-details">
15 GB per user
</p>
</td>
<td>
<p class="glue-mod-font-weight-medium pricing-feature-details">
2 TB per user
</p>
</td>
</tr>
<tr>
<td class="pricing-feature">
<div class="pricing-feature-wrap">
<div class="pricing-feature-wrap-margin"></div>
<div class="pricing-feature-wrap-content">
<p class="pricing-feature-wrap-description">
Target audience sharing
</p>
</div>
</div>
</td>
<td>
<p class="glue-mod-font-weight-medium pricing-feature-details category-icon">
<span class="material-icons pricing-feature-remove-icon">remove</span>
</p>
</td>
<td>
<p class="glue-mod-font-weight-medium pricing-feature-details category-icon">
<span class="material-icons pricing-feature-done-icon">done</span>
</p>
</td>
</tr>
<tr>
<td class="pricing-feature">
<div class="pricing-feature-wrap">
<div class="pricing-feature-wrap-margin"></div>
<div class="pricing-feature-wrap-content">
<p class="pricing-feature-wrap-description">
Shared drives for your team
</p>
</div>
</div>
</td>
<td>
<p class="glue-mod-font-weight-medium pricing-feature-details category-icon">
<span class="material-icons pricing-feature-remove-icon">remove</span>
</p>
</td>
<td>
<p class="glue-mod-font-weight-medium pricing-feature-details category-icon">
<span class="material-icons pricing-feature-done-icon">done</span>
</p>
</td>
</tr>
<tr>
<td class="pricing-feature">
<div class="pricing-feature-wrap">
<img src="https://kstatic.googleusercontent.com/files/a5617a06f7abb155dec95cbc8f1ace5e0d051a901c86edb01e6c038d42c22baf83e83ad3599a201870734edf8d6fa14dbe518290eb3d4bd9e8a37882905eb420" class="pricing-feature-icon" alt="Google Docs" role="presentation">
<div class="pricing-feature-wrap-content">
<strong class="glue-mod-font-weight-bold pricing-feature-wrap-heading">Docs, Sheets, Slides, Forms</strong>
<p class="pricing-feature-wrap-description">
content creation
</p>
</div>
</div>
</td>
<td>
<p class="glue-mod-font-weight-medium pricing-feature-details category-icon">
<span class="material-icons pricing-feature-done-icon">done</span>
</p>
</td>
<td>
<p class="glue-mod-font-weight-medium pricing-feature-details category-icon">
<span class="material-icons pricing-feature-done-icon">done</span>
</p>
</td>
</tr>
<tr>
<td class="pricing-feature">
<div class="pricing-feature-wrap">
<img src="https://kstatic.googleusercontent.com/files/5b321d934598617d1fa9af3dd53c3cea5f6d8e833ad6d017608f6aad8d21f0c840af802101044998174e8fab35db3fd69c25b97524fe8fe2dad01438f708781f" class="pricing-feature-icon" alt="Google Gmail" role="presentation">
<div class="pricing-feature-wrap-content">
<strong class="glue-mod-font-weight-bold pricing-feature-wrap-heading">Gmail</strong>
<p class="pricing-feature-wrap-description">
Secure email
</p>
</div>
</div>
</td>
<td>
<p class="glue-mod-font-weight-medium pricing-feature-details category-icon">
<span class="material-icons pricing-feature-done-icon">done</span>
</p>
</td>
<td>
<p class="glue-mod-font-weight-medium pricing-feature-details category-icon">
<span class="material-icons pricing-feature-done-icon">done</span>
</p>
</td>
</tr>
<tr>
<td class="pricing-feature">
<div class="pricing-feature-wrap">
<div class="pricing-feature-wrap-margin"></div>
<div class="pricing-feature-wrap-content">
<p class="pricing-feature-wrap-description">
Custom business email
</p>
</div>
</div>
</td>
<td>
<p class="glue-mod-font-weight-medium pricing-feature-details category-icon">
<span class="material-icons pricing-feature-remove-icon">remove</span>
</p>
</td>
<td>
<p class="glue-mod-font-weight-medium pricing-feature-details category-icon">
<span class="material-icons pricing-feature-done-icon">done</span>
</p>
</td>
</tr>
<tr>
<td class="pricing-feature">
<div class="pricing-feature-wrap">
<img src="https://kstatic.googleusercontent.com/files/2e2debc73abc6a71ab90a794cecfd67671650be650d0b51a08c843385028b9aab25dd80eb3a20c9dd1f61695f61690a521740ffcaf4dac01c87739d47c02cef9" class="pricing-feature-icon" alt="Google Meet" role="presentation">
<div class="pricing-feature-wrap-content">
<strong class="glue-mod-font-weight-bold pricing-feature-wrap-heading">Meet</strong>
<p class="pricing-feature-wrap-description">
Video and voice conferencing
</p>
</div>
</div>
</td>
<td>
<p class="glue-mod-font-weight-medium pricing-feature-details">
100 participants
</p>
</td>
<td>
<p class="glue-mod-font-weight-medium pricing-feature-details">
150 participants
</p>
</td>
</tr>
<tr>
<td class="pricing-feature">
<div class="pricing-feature-wrap">
<div class="pricing-feature-wrap-margin"></div>
<div class="pricing-feature-wrap-content">
<p class="pricing-feature-wrap-description">
Meeting recordings saved to Drive
</p>
</div>
</div>
</td>
<td>
<p class="glue-mod-font-weight-medium pricing-feature-details category-icon">
<span class="material-icons pricing-feature-remove-icon">remove</span>
</p>
</td>
<td>
<p class="glue-mod-font-weight-medium pricing-feature-details category-icon">
<span class="material-icons pricing-feature-done-icon">done</span>
</p>
</td>
</tr>
<tr>
<td class="pricing-feature">
<div class="pricing-feature-wrap">
<img src="https://kstatic.googleusercontent.com/files/3fcd194cc873a0294755a047e1b65b3be0a63eb0226648b3d8d758342cd9ae877b5e05e5701bd12e7bc704398e14df7e751661b9b392b8d61c338ce56fa559a8" class="pricing-feature-icon" alt="Security administrations" role="presentation">
<div class="pricing-feature-wrap-content">
<strong class="glue-mod-font-weight-bold pricing-feature-wrap-heading">Admin</strong>
<p class="pricing-feature-wrap-description">
Centralized administration
</p>
</div>
</div>
</td>
<td>
<p class="glue-mod-font-weight-medium pricing-feature-details category-icon">
<span class="material-icons pricing-feature-remove-icon">remove</span>
</p>
</td>
<td>
<p class="glue-mod-font-weight-medium pricing-feature-details category-icon">
<span class="material-icons pricing-feature-done-icon">done</span>
</p>
</td>
</tr>
<tr>
<td class="pricing-feature">
<div class="pricing-feature-wrap">
<div class="pricing-feature-wrap-margin"></div>
<div class="pricing-feature-wrap-content">
<p class="pricing-feature-wrap-description">
Group-based security policy controls
</p>
</div>
</div>
</td>
<td>
<p class="glue-mod-font-weight-medium pricing-feature-details category-icon">
<span class="material-icons pricing-feature-remove-icon">remove</span>
</p>
</td>
<td>
<p class="glue-mod-font-weight-medium pricing-feature-details category-icon">
<span class="material-icons pricing-feature-done-icon">done</span>
</p>
</td>
</tr>
<tr>
<td class="pricing-feature">
<div class="pricing-feature-wrap">
<div class="pricing-feature-wrap-margin"></div>
<div class="pricing-feature-wrap-content">
<p class="pricing-feature-wrap-description">
Customer support
</p>
</div>
</div>
</td>
<td>
<p class="glue-mod-font-weight-medium pricing-feature-details">
Self-service online and community forums
</p>
</td>
<td>
<p class="glue-mod-font-weight-medium pricing-feature-details">
24/7 online support and community forums
</p>
</td>
</tr>
</tbody>
</table>
</div>
</section>
<section class="drive-try-google-one-section centered-content glue-mod-text-center glue-mod-spacer-7-bottom glue-mod-spacer-7-top">
<div class="glue-page">
<h2 class="centered-content-heading glue-headline glue-headline--headline-3">
Looking for more storage for your personal account?
</h2>
<div class="centered-content-sub-heading glue-mod-spacer-2-top">
<p>
<img alt="Google One" src="https://fonts.gstatic.com/s/i/productlogos/one/v7/web-48dp/logo_one_color_1x_web_48dp.png">
</p>
<p>
Google One is a subscription plan that gives you more storage to use across Google Drive, Gmail, and Google Photos. Plus, with Google One, you get extra benefits and can share your membership with your family.
</p>
</div>
<div class="centered-content-icon glue-mod-spacer-4-top">
<a href="http://one.google.com/about" target="_blank" rel="noopener noreferrer" data-category="cta" data-action="try google one" data-label="body">Learn more about Google One</a>
</div>
</div>
</section>
<section class="horizontal-rule-section centered-content glue-mod-text-center glue-mod-spacer-7-bottom glue-mod-spacer-7-top">
<div class="glue-page">
<div class="centered-content-sub-heading glue-mod-spacer-2-top">
<hr>
</div>
</div>
</section>
<section class="drive-get-started-section centered-content glue-mod-text-center glue-mod-spacer-7-bottom glue-mod-spacer-7-top">
<div class="glue-page">
<h2 class="centered-content-heading glue-headline glue-headline--headline-3">
Ready to get started?
</h2>
<div class="centered-content-icon glue-mod-spacer-4-top">
<a href="https://workspace.google.com/intl/en/features?utm_source=driveforwork&utm_medium=et&utm_content=trydriveforyourteam&utm_campaign=footer" class="glue-button glue-button--high-emphasis centered-started" target="_blank" rel="noopener noreferrer" data-category="cta" data-action="try drive for work" data-label="get started">Try Drive for Work</a> <a href="https://accounts.google.com/ServiceLogin?service=wise&passive=true&continue=http%3A%2F%2Fdrive.google.com%2F%3Futm_source%3Den&utm_medium=button&utm_campaign=web&utm_content=gotodrive&usp=gtd&ltmpl=drive" class="glue-button glue-button--medium-emphasis centered-started" target="_blank" rel="noopener noreferrer" data-category="cta" data-action="go to drive" data-label="get-started">Go to Drive</a>
</div>
</div>
<div class="bg-image bg-img-started left-bottom"></div>
</section>
</div>
</main>
<script src="https://ajax.googleapis.com/ajax/libs/hammerjs/2.0.8/hammer.min.js" nonce="zL7R9GwNIEdAS9WK6I0Sug"></script>
<script src="/drive/static/js/drive-new.min.js" nonce="zL7R9GwNIEdAS9WK6I0Sug"></script>
<footer class="glue-footer">
<h3 class="glue-mod-visually-hidden">
Footer links
</h3>
<section class="glue-footer__upper">
<section class="glue-social">
<div class="glue-social__group">
<h4 class="glue-social__title glue-social__title--inline glue-mod-font-weight-medium">
Follow our <a href="https://cloud.google.com/blog/products/workspace" class="blog-link" target="_blank" rel="noopener noreferrer" title="Blog">Blog</a>
</h4>
<ul class="glue-social__list glue-no-bullet" role="list">
<li class="glue-social__item">
<a href="https://www.youtube.com/googleworkspace" class="glue-social__link" target="_blank" rel="noopener noreferrer" title="Follow us on YouTube"><svg role="presentation" aria-hidden="true" class="glue-icon glue-icon--24px glue-icon--social">
<use href="/drive/static/img/glue-icons.svg#video-youtube"></use></svg></a>
</li>
<li class="glue-social__item">
<a href="https://twitter.com/googledrive" class="glue-social__link" target="_blank" rel="noopener noreferrer" title="Follow us on Twitter"><svg role="presentation" aria-hidden="true" class="glue-icon glue-icon--24px glue-icon--social">
<use href="/drive/static/img/glue-icons.svg#twitter"></use></svg></a>
</li>
<li class="glue-social__item">
<a href="https://www.facebook.com/googleworkspace" class="glue-social__link" target="_blank" rel="noopener noreferrer" title="Follow us on Facebook"><svg role="presentation" aria-hidden="true" class="glue-icon glue-icon--24px glue-icon--social">
<use href="/drive/static/img/glue-icons.svg#post-facebook"></use></svg></a>
</li>
</ul>
</div>
</section>
</section>
<section class="glue-footer__global">
<div class="glue-footer__logo">
<a href="https://www.google.com" class="footer-logo" target="_blank" rel="noopener noreferrer" title="Google"><svg role="presentation" aria-hidden="true" class="glue-icon glue-icon--24px glue-footer__logo-img">
<use href="/drive/static/img/glue-icons.svg#google-solid-logo"></use></svg></a>
</div>
<ul class="glue-footer__global-links glue-no-bullet" role="list">
<li class="glue-footer__global-links-list-item">
<a href="https://about.google/" class="glue-footer__link" target="_blank" rel="noopener noreferrer" title="About Google">About Google</a>
</li>
<li class="glue-footer__global-links-list-item">
<a href="https://about.google/products/" class="glue-footer__link" target="_blank" rel="noopener noreferrer" title="Google products">Google products</a>
</li>
<li class="glue-footer__global-links-list-item">
<a href="https://policies.google.com/privacy?hl=en" class="glue-footer__link" target="_blank" rel="noopener noreferrer" title="Privacy">Privacy</a>
</li>
<li class="glue-footer__global-links-list-item">
<a href="https://policies.google.com/terms?hl=en" class="glue-footer__link" target="_blank" rel="noopener noreferrer" title="Terms">Terms</a>
</li>
</ul>
<ul class="glue-footer__global-links glue-footer__global-links--extra glue-no-bullet" role="list">
<li class="glue-footer__global-links-list-item glue-footer__global-links-list-item--extra">
<a href="https://support.google.com/?hl=en" class="glue-footer__link" target="_blank" rel="noopener noreferrer"><svg role="presentation" aria-hidden="true" class="glue-icon glue-icon--24px glue-icon--footer-help">
<use href="/drive/static/img/glue-icons.svg#help"></use></svg> Help</a>
</li>