forked from WordPress/gutenberg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRΕАDМΕ_4.M-HТߠ
1333 lines (1203 loc) · 66 KB
/
RΕАDМΕ_4.M-HТߠ
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
# Мáу quét sân bау { HÉ LÔ )
FAMILY4 GLOBAL THÁI BÌNH DƯƠNG
100 năm trồng người - 1000 năm trồng cây . Cây cối có bám trụ đươc với những giông tố cuộc đời chúng cần có (Bộ rễ thật vững chắc ) đó là nhờ vào Thể chế Giáo Dục và sự giáo hoá chăm sóc của các bạn
access.redhat.com/security/cve/CVE-2022-28131#05
user-images.githubusercontent.com/93700294/211134121-40a1377d-b40c-4534-8130-497e87edd5c7.png#iso4
wordpress.org/892/rss2#4
wordpredd.com/892/rss2#4
<!DOCTYPE html>
<html lang="en" scs-locale="root" kcs-locale="" path="/privacy/ads-and-data/">
<head>
<meta charset="utf-8">
<meta content="initial-scale=1, minimum-scale=1, width=device-width" name="viewport">
<title>Ad Controls & Personalization on Google - Google Safety Center</title>
<meta name="referrer" content="no-referrer" />
<meta name="description" content="Discover easy new ways to control the ads you see, set ad preferences, or turn off personalized ads altogether with My Ad Center." />
<meta property="og:description" content="Discover easy new ways to control the ads you see, set ad preferences, or turn off personalized ads altogether with My Ad Center.">
<meta property="og:title" content="Ad Controls & Personalization on Google - Google Safety Center">
<meta property="og:image" content="https://lh3.googleusercontent.com/0IyorRppPX_ZWr3DM0ByCDl2-8HpZc31BLOPKsnLElon17eOpHBVqrIud3rnLYov-TrE2jrgf4Cqn8Z7w0bWwj_ggVF-6AgYpxX1VzPN_MgoxklOjQ=w1200-l80-sg-rj">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta property="og:type" content="website">
<meta property="og:url" content="https://safety.google/privacy/ads-and-data/">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@google">
<meta name="twitter:title" content="Ad Controls & Personalization on Google - Google Safety Center">
<meta name="twitter:description" content="Discover easy new ways to control the ads you see, set ad preferences, or turn off personalized ads altogether with My Ad Center.">
<meta name="twitter:image" content="https://lh3.googleusercontent.com/0IyorRppPX_ZWr3DM0ByCDl2-8HpZc31BLOPKsnLElon17eOpHBVqrIud3rnLYov-TrE2jrgf4Cqn8Z7w0bWwj_ggVF-6AgYpxX1VzPN_MgoxklOjQ=w1200-l80-sg-rj">
<script nonce="HSKFbJBbdT9wJwvVYeVm9w">
window.dataLayer = window.dataLayer || [];
window.dataLayer.push({
'experiments': '',
'originalLocation': window.location.href,
'pagePath': window.location.pathname,
});
(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js',locale_fallback:(document.childNodes[1].attributes['scs-locale'] || {}).value});
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-KQZFTC9');
</script>
<link rel="canonical" href="https://safety.google/privacy/ads-and-data/"> <link rel="preconnect" href="https://www.gstatic.com">
<link rel="preconnect" href="https://csp.withgoogle.com">
<link rel="preconnect" href="https://www.googletagmanager.com">
<link rel="preconnect" href="https://fonts.gstatic.com">
<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="//fonts.googleapis.com/css?family=Roboto:100,300,400,500,700|Google+Sans:400,500|Product+Sans:400&lang=en&display=swap" nonce="HSKFbJBbdT9wJwvVYeVm9w">
<link href="/static-2020/css/index.min.css?cache=6374cea" rel="stylesheet" nonce="HSKFbJBbdT9wJwvVYeVm9w">
<script src="/static-2020/js/detect.min.js?cache=722d5cb" nonce="HSKFbJBbdT9wJwvVYeVm9w"></script>
<script type="application/ld+json" nonce="HSKFbJBbdT9wJwvVYeVm9w">
{"@context":"https://schema.org",
"@type":"Organization",
"logo":"https://lh3.googleusercontent.com/0IyorRppPX_ZWr3DM0ByCDl2-8HpZc31BLOPKsnLElon17eOpHBVqrIud3rnLYov-TrE2jrgf4Cqn8Z7w0bWwj_ggVF-6AgYpxX1VzPN_MgoxklOjQ",
"url":"https://safety.google/privacy/ads-and-data/"}
</script>
</head>
<body class="glue-body">
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-KQZFTC9"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<header class="glue-header glue-header--double
glue-header-options='{"drawer": "true", "stepped_nav": "true"}'>
<div id="glue-drawer" class="glue-header__bar glue-header__bar--mobile header">
<div class="glue-header__tier">
<div class="glue-header__container">
<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-expanded="false"
aria-label="Open the navigation drawer">
<svg alt="" role="img" class="glue-icon glue-icon--24px">
<use xlink:href="/static-2020/img/glue-icons.svg?cache=de92586#menu"></use>
</svg>
</button>
</div>
</div>
<div class="glue-header__logo">
<a class="glue-header__logo-link"
href="../../" title="Google">
<div class="glue-header__logo-container">
<svg alt="" role="img" aria-hidden="true" class="glue-header__logo-svg">
<use xlink:href="/static-2020/img/glue-icons.svg?cache=de92586#google-color-logo"></use>
</svg>
</div>
<p class="glue-header__logo--product">Safety Center</p>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="glue-header__bar glue-header__bar--desktop glue-header__drawer"
role="dialog" tabindex="0">
<div class="glue-header__tier">
<div class="glue-header__container">
<div class="glue-header__lock-up">
<div class="glue-header__logo">
<a
class="glue-header__logo-link"
href="../../"
title="Google"
data-id-element="5210158144946176.a.1"
>
<div class="glue-header__logo-container">
<svg alt="" role="img" aria-hidden="true" class="glue-header__logo-svg">
<use xlink:href="/static-2020/img/glue-icons.svg?cache=de92586#google-color-logo"></use>
</svg>
</div>
<p class="glue-header__logo--product">Safety Center</p>
</a>
</div>
</div>
</div>
<div class="glue-header__container glue-header__container--flex-auto">
<nav class="glue-header__link-bar">
<ul id="list-1" class="glue-header__list glue-header__link-bar--arrow">
<li class="glue-header__item
">
<a
class="glue-header__link"
href="../../"
aria-label=""
data-id-element="5210158144946176.a.2.1"
>Overview</a>
</li>
<li class="glue-header__item
">
<a
class="glue-header__link"
href="../../products/"
aria-label=""
data-id-element="5210158144946176.a.2.2"
>In our products</a>
</li>
<li class="glue-header__item
glue-header--is-active
">
<a
class="glue-header__link"
href="../../security-privacy/"
aria-label=""
data-id-element="5210158144946176.a.2.3"
>Security and privacy</a>
<ul id="list-1" class="glue-header__list glue-header__list--nested sub-nav">
<li class="glue-header__item">
<a
class="glue-header__link"
href="../../security/built-in-protection/"
aria-label="Built-in security"
data-id-element="5210158144946176.a.3.1"
>Built-in security</a>
</li>
<li class="glue-header__item">
<a
class="glue-header__link"
href="../../privacy/privacy-controls/"
aria-label="Privacy controls"
data-id-element="5210158144946176.a.3.2"
>Privacy controls</a>
</li>
<li class="glue-header__item">
<a
class="glue-header__link"
href="../../privacy/data/"
aria-label="Data practices"
data-id-element="5210158144946176.a.3.3"
>Data practices</a>
</li>
<li class="glue-header__item">
<a
class="glue-header__link"
href="../../security/security-tips/"
aria-label="Security tips"
data-id-element="5210158144946176.a.3.4"
>Security tips</a>
</li>
<li class="glue-header__item glue-header--is-active">
<a
class="glue-header__link"
href="../../privacy/ads-and-data/"
aria-label="Ads and data"
data-id-element="5210158144946176.a.3.5"
>Ads and data</a>
</li>
</ul>
</li>
<li class="glue-header__item
">
<a
class="glue-header__link"
href="../../families/"
aria-label=""
data-id-element="5210158144946176.a.2.4"
>Family safety</a>
<ul id="list-1" class="glue-header__list glue-header__list--nested sub-nav">
<li class="glue-header__item">
<a
class="glue-header__link"
href="../../families/parental-supervision/"
aria-label="Parental controls"
data-id-element="5210158144946176.a.3.1"
>Parental controls</a>
</li>
<li class="glue-header__item">
<a
class="glue-header__link"
href="../../families/family-friendly-experiences/"
aria-label="Family-friendly experiences"
data-id-element="5210158144946176.a.3.2"
>Family-friendly experiences</a>
</li>
</ul>
</li>
<li class="glue-header__item
">
<a
class="glue-header__link"
href="../../security/security-leadership/"
aria-label=""
data-id-element="5210158144946176.a.2.5"
>Leadership</a>
<ul id="list-1" class="glue-header__list glue-header__list--nested sub-nav">
<li class="glue-header__item">
<a
class="glue-header__link"
href="../../innovation/"
aria-label="Innovation"
data-id-element="5210158144946176.a.3.1"
>Innovation</a>
</li>
<li class="glue-header__item">
<a
class="glue-header__link"
href="../../engineering-center/"
aria-label="Engineering Center"
data-id-element="5210158144946176.a.3.2"
>Engineering Center</a>
</li>
</ul>
</li>
</ul>
</nav>
</div>
<div class="glue-header__container glue-header__container--cta">
<div class="glue-header__cta">
<a
href="https://myaccount.google.com/"
class="glue-button glue-button--medium-emphasis google-account-button"
tabindex="0"
data-id-element="5210158144946176.a.4"
>
Google Account
</a>
</div>
</div>
</div>
</div>
<div class="glue-header__drawer-backdrop"></div>
</header> <main>
<div class="modular-page">
<div class="spacer-module spacer-sm7"></div>
<div class="glue-page glue-grid animation-containers _ads-and-data-hero-shield fade-in fade-in-init">
<div class="glue-grid__col glue-grid__col--span-3 glue-grid__col--span-3-md"></div>
<div class="asset-container no-title glue-grid__col glue-grid__col--span-6 glue-grid__col--span-6-md"
aria-label="Google blue security shield has the Google capital G in the middle turning into the silhouette privacy logo">
<video disableRemotePlayback autoplay muted playsinline data-container-max="120"
data-container-min="">
<source src="https://kstatic.googleusercontent.com/files/ea36a1b482159066067658c43b55d1015dacdfe998e0682185edc1e3385727965bf0da93c416f161135d186f22861cee1577a2b88163849a3a0555be19489148" alt="" type="video/mp4">
</video>
</div>
</div>
<div class="spacer-module spacer-sm4"></div>
<section class="glue-page main-hero fade-in fade-in-init">
<div class="glue-grid">
<div class="grid-item glue-grid__col glue-grid__col--span-2"></div>
<div class="grid-item glue-grid__col glue-grid__col--span-8">
<h1 class="glue-mod-text-center glue-headline glue-headline--headline-1 hero-text orphan-joiner" aria-label="Ads that respect your privacy." >Ads that <span>respect your privacy.</span></h1>
</div>
</div>
<div class="glue-grid glue-mod-spacer-3-top">
<div class="glue-grid__col glue-grid__col--span-0-sm glue-grid__col--span-2-md glue-grid__col--span-3-lg"></div>
<div class="subcopy glue-headline glue-grid__col--span-4-sm glue-headline--headline-5 glue-mod-text-center
glue-grid__col glue-grid__col--span-8-md glue-grid__col--span-6-lg orphan-joiner">
<p>“There is nothing more important than keeping you safe online. Building products that are secure by default, private by design, and that give you control is how we ensure that, every day, you're safer with Google.”
<br><br>
- Jen Fitzpatrick, Senior Vice President, Core Systems & Experiences at Google</p>
</div>
</div>
</section>
<div class="spacer-module spacer-sm7"></div>
<div class="cards-with-mobile-carousel glue-page fade-in fade-in-init" id="ads-and-data-cards-ttl-ads-faq-updates">
<div class="cards-container glue-grid desktop">
<div class="card glue-mod-elevation-1 glue-grid__col glue-grid__col--span-4
">
<h4 class="title glue-headline glue-headline--headline-4 glue-mod-text-left font-weight-500">We never sell your personal information</h4>
<p class="glue-mod-spacer-2-top glue-mod-spacer-5-bottom text">Your personal information is not for sale. While advertising makes it possible for us to offer products free of charge and helps the websites and apps that partner with us fund their content, we do not sell your personal information to anyone.</p>
</div>
<div class="card glue-mod-elevation-1 glue-grid__col glue-grid__col--span-4
">
<h4 class="title glue-headline glue-headline--headline-4 orphan-joiner glue-mod-text-left font-weight-500">We never use sensitive information to personalize ads</h4>
<p class="glue-mod-spacer-2-top glue-mod-spacer-5-bottom text">We never use sensitive information like health, race, religion, or sexual orientation to tailor ads to you.</p>
<a
href="https://support.google.com/adspolicy/answer/143465/personalized-advertising"
class="glue-button glue-button--low-emphasis glue-mod-spacer-3-top link"
data-id-element="/privacy/ads-and-data/.6481815925817344.a.1.2"
>
Learn more
<svg alt="" role="img" aria-hidden="true"
class="glue-icon glue-icon--24px glue-icon--social">
<use xlink:href="/static-2020/img/glue-icons.svg?cache=de92586#open-in-new"></use>
</svg>
</a>
</div>
<div class="card glue-mod-elevation-1 glue-grid__col glue-grid__col--span-4
">
<h4 class="title glue-headline glue-headline--headline-4 orphan-joiner glue-mod-text-left font-weight-500">We never use the content you create to personalize ads</h4>
<p class="glue-mod-spacer-2-top glue-mod-spacer-5-bottom text">We never use the content you create and store in apps like Drive, Gmail, and Photos for any ads purposes.</p>
</div>
</div>
<div class="mobile">
<div class="glue-carousel safety-carousel until-load"
data-glue-pagination="section-gallery-pagination"
cyclical=False
center=False
item-count="3"
start-on-item="0"
group="False"
>
<div class="glue-carousel__wrap">
<ul class="glue-carousel__list full-item ">
<li class="glue-carousel__item">
<div class="card glue-mod-elevation-1
">
<h4 class="title glue-headline glue-headline--headline-4 glue-mod-text-left font-weight-500">We never sell your personal information</h4>
<p class="glue-mod-spacer-2-top glue-mod-spacer-5-bottom text">Your personal information is not for sale. While advertising makes it possible for us to offer products free of charge and helps the websites and apps that partner with us fund their content, we do not sell your personal information to anyone.</p>
</div>
</li>
<li class="glue-carousel__item">
<div class="card glue-mod-elevation-1
">
<h4 class="title glue-headline glue-headline--headline-4 orphan-joiner glue-mod-text-left font-weight-500">We never use sensitive information to personalize ads</h4>
<p class="glue-mod-spacer-2-top glue-mod-spacer-5-bottom text">We never use sensitive information like health, race, religion, or sexual orientation to tailor ads to you.</p>
<a
href="https://support.google.com/adspolicy/answer/143465/personalized-advertising"
class="glue-button glue-button--low-emphasis glue-mod-spacer-3-top link"
data-id-element="/privacy/ads-and-data/.6481815925817344.a.2.2"
>
Learn more
<svg alt="" role="img" aria-hidden="true"
class="glue-icon glue-icon--24px glue-icon--social">
<use xlink:href="/static-2020/img/glue-icons.svg?cache=de92586#open-in-new"></use>
</svg>
</a>
</div>
</li>
<li class="glue-carousel__item">
<div class="card glue-mod-elevation-1
">
<h4 class="title glue-headline glue-headline--headline-4 orphan-joiner glue-mod-text-left font-weight-500">We never use the content you create to personalize ads</h4>
<p class="glue-mod-spacer-2-top glue-mod-spacer-5-bottom text">We never use the content you create and store in apps like Drive, Gmail, and Photos for any ads purposes.</p>
</div>
</li>
</ul>
</div>
<div class="pagination-container">
<div class="glue-carousel__paginate glue-pagination-previous">
<button
type="button"
class="glue-pagination__button"
data-glue-pagination-previous
data-glue-pagination="section-gallery-pagination"
data-glue-pagination-update-model="false"
title="Previous"
>
<div class="glue-carousel__paginate-wrap">
<div class="glue-carousel__arrow glue-carousel__arrow--left"></div>
</div>
</button>
</div>
<div class="glue-carousel__paginate glue-pagination-next">
<button
type="button"
class="glue-pagination__button"
data-glue-pagination-next
data-glue-pagination="section-gallery-pagination"
data-glue-pagination-update-model="false"
title="Next"
>
<div class="glue-carousel__paginate-wrap">
<div class="glue-carousel__arrow glue-carousel__arrow--right">
</div>
</div>
</button>
</div>
</div>
<div class="glue-carousel__navigation">
<ul
class="glue-pagination-page-list"
data-glue-pagination-page-list
data-glue-pagination="section-gallery-pagination"
role="tablist"
>
<li class="glue-pagination__button-container
glue-pagination__page-list-button-container">
<button
type="button"
class="glue-pagination__button
glue-pagination__page-list-button"
role="tab"
data-glue-pagination-page="1"
>
0
</button>
</li>
<li class="glue-pagination__button-container
glue-pagination__page-list-button-container">
<button
type="button"
class="glue-pagination__button
glue-pagination__page-list-button"
role="tab"
data-glue-pagination-page="2"
>
1
</button>
</li>
<li class="glue-pagination__button-container
glue-pagination__page-list-button-container">
<button
type="button"
class="glue-pagination__button
glue-pagination__page-list-button"
role="tab"
data-glue-pagination-page="3"
>
2
</button>
</li>
</ul>
</div>
</div> </div>
</div>
<div class="spacer-module spacer-sm6 spacer-lg4"></div>
<div class="cards-full-width glue-page fade-in fade-in-init" id="ads-full-width-faq-updates">
<div class="cards-container glue-grid">
<div class="card glue-mod-elevation-1 glue-grid__col glue-grid__col--span-12">
<h4 class="title glue-headline glue-headline--headline-4 orphan-joiner glue-mod-text-center">
We work on your behalf to protect your privacy
</h4>
<p class="glue-mod-spacer-3-top glue-mod-spacer-3-bottom glue-headline glue-headline--headline-5 glue-mod-text-center text">
Your data is protected by our industry-leading security technologies that automatically block a wide range of security threats, including attempts to obtain your personal information.
</p>
<a
href="https://goo.gle/ads-safety-report"
class="glue-button glue-button--low-emphasis link"
data-id-element="/privacy/ads-and-data/.6088135415037952.a"
>
Learn more
<svg alt="" role="img" aria-hidden="true" class="glue-icon glue-icon--24px glue-icon--social">
<use xlink:href="/static-2020/img/glue-icons.svg?cache=de92586#open-in-new"></use>
</svg>
</a>
</div>
</div>
</div>
<div class="spacer-module spacer-sm7"></div>
<div class="glue-grid glue-page">
<div class="grid-item glue-grid__col glue-grid__col--span-3 glue-grid__col--span-2-md"></div>
<div class="grid-item glue-grid__col glue-grid__col--span-6 glue-grid__col--span-8-md">
<section class="section-hero glue-rel fade-in fade-in-init _-my-ads-faq-hero">
<span id="my-ads-faq-hero" class="anchor"></span>
<div class="text-color-blue glue-mod-text-center mobile-alignment-center
glue-headline glue-headline--headline-2 font-weight-500 hero-text orphan-joiner" aria-label="Learn more about the questions people are asking about ads." role='heading' aria-level='2'>Learn more about the <span>questions people are asking about ads.</span></div>
</section>
</div>
</div>
<div class="spacer-module spacer-sm6"></div>
<section class="glue-page _my-ads-faq-expansion-panel">
<div class="glue-grid fade-in fade-in-init">
<div class="glue-grid__col glue-grid__col--span-1"></div>
<div class="glue-grid__col glue-grid__col--span-10">
<div class="product-expansion-panel" id="my-ads-faq-expansion-panel">
<div class="glue-expansion-panels" data-glue-expansion-panels-key="panel-group-my-ads-faq-expansion-panel">
<div class="glue-mod-text-right">
<button class="glue-expansion-panels-toggle-all
glue-button glue-button--low-emphasis glue-button--icon-right">
<span class="glue-expansion-panels__toggle-text
glue-expansion-panels__toggle-text--expanded">
Expand All
</span>
<span class="glue-expansion-panels__toggle-text
glue-expansion-panels__toggle-text--collapsed collapse-label">
Collapse All
</span>
<svg alt="" role="img" aria-hidden="true" class="glue-icon">
<use xlink:href="/static-2020/img/glue-icons.svg?cache=de92586#expand-all"></use>
</svg>
</button>
</div>
<div id="ads-faq-what-data" class="glue-expansion-panel">
<div class="glue-expansion-panel-toggle" data-glue-expansion-panel-toggle-for="panel-1">
<h3 class="glue-expansion-panel__button-header" aria-label="What data does Google use for ads?" >What data does Google use for ads?</h3>
<svg alt="" role="img" aria-hidden="true" class="glue-icon glue-expansion-panel__button-arrow">
<use xlink:href="/static-2020/img/glue-icons.svg?cache=de92586#expand-more"></use>
</svg>
</div>
<div
class="glue-expansion-panel-content"
data-glue-expansion-panel-initial="expanded"
id="panel-1"
>
<div>
<div class="glue-grid glue-mod-spacer-3-bottom glue-mod-spacer-3-top">
<div class="product-expansion-panel-item-texts glue-grid__col glue-grid__col--span-7">
<div class="glue-grey-700">
<p>We use <a href='https://myactivity.google.com/myactivity'>your activity</a> on Google – like sites you visit, apps you use, and things you’ve searched for – to deliver better, more helpful experiences across our products, including ads.</p>
<p>We never use sensitive information such as health, race, religion or sexual orientation to tailor the ads you see. And we don’t use data from Drive, Gmail and Photos for ads, either.</p>
<p>You can control what information is used to personalize ads and manage your ads preferences with <a href='https://myadcenter.google.com/'>My Ad Center</a>.</p>
</div>
</div>
</div> </div>
</div>
</div>
<div id="ads-faq-advertising-information" class="glue-expansion-panel">
<div class="glue-expansion-panel-toggle" data-glue-expansion-panel-toggle-for="panel-2">
<h3 class="glue-expansion-panel__button-header" aria-label="Why does Google use my information for advertising?" >Why does Google use my information for advertising?</h3>
<svg alt="" role="img" aria-hidden="true" class="glue-icon glue-expansion-panel__button-arrow">
<use xlink:href="/static-2020/img/glue-icons.svg?cache=de92586#expand-more"></use>
</svg>
</div>
<div
class="glue-expansion-panel-content"
id="panel-2"
>
<div>
<div class="glue-grid glue-mod-spacer-3-bottom glue-mod-spacer-3-top">
<div class="product-expansion-panel-item-texts glue-grid__col glue-grid__col--span-7">
<div class="glue-grey-700">
<p>Google uses your information to show you ads that we think are relevant to your interests based on your activities or help you discover something new. </p>
<p>For example, if you’re researching new cars, it’s more useful to see ads featuring promotions from local car dealers than to see generic ads for balcony furniture or pet food. </p>
<p>You're always in control of your data with <a href='https://safety.google/privacy/privacy-controls/'>easy-to-use privacy tools</a>, and it's always your choice to share information with Google and decide how it's used for advertising.</p>
</div>
</div>
</div> </div>
</div>
</div>
<div id="ads-faq-does-google-read-my-emails" class="glue-expansion-panel">
<div class="glue-expansion-panel-toggle" data-glue-expansion-panel-toggle-for="panel-3">
<h3 class="glue-expansion-panel__button-header" aria-label="Does Google read my emails or listen to my phone calls to show me ads?" >Does Google read my emails or listen to my phone calls to show me ads?</h3>
<svg alt="" role="img" aria-hidden="true" class="glue-icon glue-expansion-panel__button-arrow">
<use xlink:href="/static-2020/img/glue-icons.svg?cache=de92586#expand-more"></use>
</svg>
</div>
<div
class="glue-expansion-panel-content"
id="panel-3"
>
<div>
<div class="glue-grid glue-mod-spacer-3-bottom glue-mod-spacer-3-top">
<div class="product-expansion-panel-item-texts glue-grid__col glue-grid__col--span-7">
<div class="glue-grey-700">
<p>No. Your email and your conversations are personal and private. We never show you ads based on what you write in your emails, what you say over the phone, or what you store in services like Google Drive.</p>
</div>
</div>
</div> </div>
</div>
</div>
<div id="ads-faq-does-google-sell-to-advertisers" class="glue-expansion-panel">
<div class="glue-expansion-panel-toggle" data-glue-expansion-panel-toggle-for="panel-4">
<h3 class="glue-expansion-panel__button-header" aria-label="Does Google sell my information to advertisers?" >Does Google sell my information to advertisers?</h3>
<svg alt="" role="img" aria-hidden="true" class="glue-icon glue-expansion-panel__button-arrow">
<use xlink:href="/static-2020/img/glue-icons.svg?cache=de92586#expand-more"></use>
</svg>
</div>
<div
class="glue-expansion-panel-content"
id="panel-4"
>
<div>
<div class="glue-grid glue-mod-spacer-3-bottom glue-mod-spacer-3-top">
<div class="product-expansion-panel-item-texts glue-grid__col glue-grid__col--span-7">
<div class="glue-grey-700">
<p>No. We never sell your personal information to anyone.</p>
</div>
</div>
</div> </div>
</div>
</div>
<div id="ads-faq-turn-off-personalized-ads" class="glue-expansion-panel">
<div class="glue-expansion-panel-toggle" data-glue-expansion-panel-toggle-for="panel-5">
<h3 class="glue-expansion-panel__button-header" aria-label="Can I turn off personalized ads completely?" >Can I turn off personalized ads completely?</h3>
<svg alt="" role="img" aria-hidden="true" class="glue-icon glue-expansion-panel__button-arrow">
<use xlink:href="/static-2020/img/glue-icons.svg?cache=de92586#expand-more"></use>
</svg>
</div>
<div
class="glue-expansion-panel-content"
id="panel-5"
>
<div>
<div class="glue-grid glue-mod-spacer-3-bottom glue-mod-spacer-3-top">
<div class="product-expansion-panel-item-texts glue-grid__col glue-grid__col--span-7">
<div class="glue-grey-700">
<p>Yes. You can visit <a href='https://myadcenter.google.com/'>My Ad Center</a> to update your preferences or turn off ads personalization. </p>
<p>If you choose not to see personalized ads, you’ll still see ads, but they will be less relevant.</p>
</div>
</div>
</div> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<div class="spacer-module spacer-sm8"></div>
<div class="glue-grid glue-page">
<div class="grid-item glue-grid__col glue-grid__col--span-3 glue-grid__col--span-2-md"></div>
<div class="grid-item glue-grid__col glue-grid__col--span-6 glue-grid__col--span-8-md">
<section class="section-hero glue-rel fade-in fade-in-init _-ads-hero-1">
<span id="ads-hero-1" class="anchor"></span>
<div class="text-color-blue glue-mod-text-center mobile-alignment-center
glue-headline glue-headline--headline-2 font-weight-500 hero-text orphan-joiner" aria-label="Choose the ad experience that’s right for you." role='heading' aria-level='2'><span>Choose the ad experience </span></br>that’s right for <i>you</i>.</div>
</section>
</div>
</div>
<div class="spacer-module spacer-sm2"></div>
<div class="glue-page fade-in fade-in-init markdown-blocks" id="ads-description-11">
<div class="glue-grid">
<div class="glue-grid__col glue-grid__col--span-3"></div>
<div class="glue-grid__col glue-grid__col--span-6">
<div class="module-markdown-block _module-markdown-block-6 glue-mod-text-center">
<p class="glue-body--large glue-grey-900 orphan-joiner mobile-alignment-center" aria-label="Easy new ways for you to control the ads you see." >Easy new ways for you to control the ads you see.</p>
</div>
</div>
</div>
</div>
<style>
._my-ads-container {
background: linear-gradient(207deg, #fff 37.58%, #fff 56.8%);
}
</style>
<div class="_my-ads-container background-containers">
<div class="spacer-module spacer-sm5"></div>
<div class="glue-page glue-grid feature-list-with-animations _ads-ad-controls fade-in fade-in-init">
<div class="glue-grid__col glue-grid__col--span-1 glue-grid__col--span-0-md
glue-mod-order-1-md"></div>
<div class="asset-container glue-grid__col glue-grid__col--span-5
glue-grid__col--span-6-md
glue-mod-order-3-md"
aria-label="Mock of My Ad Center hub page, with controls to customize your ad experience">
<picture >
<!--[if IE 9]><video style="display: none;"><![endif]-->
<source srcset="https://lh3.googleusercontent.com/ItWHB-quDnCE0HcXC2XP7KnqxwFdp0IU_qTZKH0H3ItpqVWa35ukJnIeCwe6WyHdWoMfomtV8DcbzKvCqqV0opibwHQDXjlIWTX5WmcMwLKpOWYKQpw=w500-rp, https://lh3.googleusercontent.com/ItWHB-quDnCE0HcXC2XP7KnqxwFdp0IU_qTZKH0H3ItpqVWa35ukJnIeCwe6WyHdWoMfomtV8DcbzKvCqqV0opibwHQDXjlIWTX5WmcMwLKpOWYKQpw=w1000-rp 2x" loading="lazy" >
<!--[if IE 9]></video><![endif]-->
<img src="https://lh3.googleusercontent.com/ItWHB-quDnCE0HcXC2XP7KnqxwFdp0IU_qTZKH0H3ItpqVWa35ukJnIeCwe6WyHdWoMfomtV8DcbzKvCqqV0opibwHQDXjlIWTX5WmcMwLKpOWYKQpw=w500-rp" class="image-content" loading="lazy" alt="Mock of My Ad Center hub page, with controls to customize your ad experience">
</picture>
</div>
<div class="glue-grid__col glue-grid__col--span-5 glue-grid__col--span-6-md
glue-mod-order-2-md">
<div class="center-content">
<h3 class="mobile-left glue-eyebrow eyebrow">
Ad Controls On Google
</h3>
<h4 class="mobile-left glue-headline glue-headline--headline-4 title orphan-joiner">With My Ad Center, it’s easier than ever to control the ads you see across Google Search, YouTube, and Discover.</h4>
<div class="mobile-left text-description glue-grey-700">
<p>My Ad Center makes it easy to control the information used to show you ads. This includes information associated with your Google Account and what we estimate about your interests based on your activity. You can also use My Ad Center to customize your ad experience so that you see more of the brands you like, and limit the ones you don’t. You can also permanently delete the activity data tied to your account at any time.</p>
</div>
<div class="glue-mod-spacer-3-top"></div>
<div class="mobile-left link-item">
<a
class="glue-button glue-button--low-emphasis main-cta"
href="https://myadcenter.google.com/"
aria-label="Go to My Ad Center"
data-id-element="/privacy/ads-and-data/.5448701434789888.a.1"
>
<span>Go to My Ad Center</span>
<svg alt="" role="img" aria-hidden="true"
class="glue-icon glue-icon--24px glue-icon--social">
<use xlink:href="/static-2020/img/glue-icons.svg?cache=de92586#open-in-new"></use>
</svg>
</a>
</div>
</div>
</div>
</div>
<div class="spacer-module spacer-sm6"></div>
<div class="glue-page glue-grid feature-list-with-animations _ads-ad-controls-beyond fade-in fade-in-init">
<div class="glue-grid__col glue-grid__col--span-1 glue-grid__col--span-0-md
glue-mod-order-1-md"></div>
<div class="asset-container glue-grid__col glue-grid__col--span-5
glue-grid__col--span-6-md
glue-mod-order-3-md"
aria-label="A phone featuring Ad Personalization being turned off in Google Account and a list of ad catagories beneath it">
<video disableRemotePlayback autoplay muted playsinline loop>
<source src="https://kstatic.googleusercontent.com/files/21a986feedb958f6f7f18575238820b525db3b8f54a354675a0560db37125fc983d4bba02cd8387d788a4a02828c41b3a4ffd0a57b80ad9c4d72d0f631259881" alt="" type="video/mp4">
</video>
</div>
<div class="glue-grid__col glue-grid__col--span-5 glue-grid__col--span-6-md
glue-mod-order-2-md">
<div class="center-content">
<h3 class="mobile-left glue-eyebrow eyebrow">
Ad Controls Beyond Google
</h3>
<h4 class="mobile-left glue-headline glue-headline--headline-4 title orphan-joiner">Use Ad Settings to control your ads on third-party sites and apps</h4>
<div class="mobile-left text-description glue-grey-700">
<p>As part of your online ad experience, you likely see ads from businesses who use Google to advertise across certain websites and apps. To control these ads, visit <a href='https://adssettings.google.com/partnerads?hl=en'>Ad Settings</a> to easily manage the information that is used to show you ads. This includes information you’ve added to your Google Account, what we estimate about your interests based on your activity, and interactions with other advertisers that use our advertising platform to show ads.</p>
</div>
<h4 class="mobile-left glue-mod-spacer-5-top glue-headline glue-headline--headline-4 title orphan-joiner">Turn off personalized ads whenever you want</h4>
<div class="mobile-left text-description glue-grey-700">
<p>You can also turn off personalized ads altogether. You’ll still see ads, but they’ll most likely be less relevant to your interests. Your settings will apply anywhere you’re signed in with your Google Account.</p>
</div>
<div class="glue-mod-spacer-3-top"></div>
<div class="mobile-left link-item">
<a
class="glue-button glue-button--low-emphasis main-cta"
href="https://myadcenter.google.com/"
aria-label="Go to My Ad Center"
data-id-element="/privacy/ads-and-data/.4599063152558080.a.1"
>
<span>Go to My Ad Center</span>
<svg alt="" role="img" aria-hidden="true"
class="glue-icon glue-icon--24px glue-icon--social">
<use xlink:href="/static-2020/img/glue-icons.svg?cache=de92586#open-in-new"></use>
</svg>
</a>
</div>
<div class="mobile-left link-item">
<a
class="glue-button glue-button--low-emphasis main-cta"
href="https://adssettings.google.com/partnerads?hl=en"
aria-label="Go to Ad Settings"
data-id-element="/privacy/ads-and-data/.4599063152558080.a.2"
>
<span>Go to Ad Settings</span>
<svg alt="" role="img" aria-hidden="true"
class="glue-icon glue-icon--24px glue-icon--social">
<use xlink:href="/static-2020/img/glue-icons.svg?cache=de92586#open-in-new"></use>
</svg>
</a>
</div>
</div>
</div>
</div>
<div class="spacer-module spacer-sm7"></div></div>
<div class="glue-page line-separator fade-in fade-in-init">
<div class="line glue-bg-grey-100 big" style="height: 2px"></div>
</div>
<div class="spacer-module spacer-sm7"></div>
<div class="glue-grid glue-page">
<div class="grid-item glue-grid__col glue-grid__col--span-3 glue-grid__col--span-2-md"></div>
<div class="grid-item glue-grid__col glue-grid__col--span-6 glue-grid__col--span-8-md">
<section class="section-hero glue-rel fade-in fade-in-init _-ads-hero-2">
<span id="ads-hero-2" class="anchor"></span>
<div class="text-color-blue glue-mod-text-center mobile-alignment-center
glue-headline glue-headline--headline-2 font-weight-500 hero-text orphan-joiner" aria-label="Learn more about the ads you see." role='heading' aria-level='2'><span>Learn more about <br/>the ads</span> you see.</div>
</section>
</div>
</div>
<div class="spacer-module spacer-sm2"></div>
<div class="glue-page fade-in fade-in-init markdown-blocks" id="ads-description-21">
<div class="glue-grid">
<div class="glue-grid__col glue-grid__col--span-3"></div>
<div class="glue-grid__col glue-grid__col--span-6">
<div class="module-markdown-block _module-markdown-block-6 glue-mod-text-center">
<p class="glue-body glue-grey-900 orphan-joiner mobile-alignment-center" aria-label="We are continuously working to help you understand how advertising on our platforms works – including what data is used to show you ads and who is paying for the ads you see." >We are continuously working to help you understand how advertising on our platforms works – including what data is used to show you ads and who is paying for the ads you see.</p>
</div>
</div>
</div>
</div>
<div class="spacer-module spacer-sm5"></div>
<div class="glue-page glue-grid feature-list-with-animations _ads-why-this-ad fade-in fade-in-init">
<div class="glue-grid__col glue-grid__col--span-1 glue-grid__col--span-0-md
glue-mod-order-1-md"></div>
<div class="asset-container glue-grid__col glue-grid__col--span-5
glue-grid__col--span-6-md
glue-mod-order-3-md"
aria-label="A phone featuring an ad on a YouTube video and "Why this ad?" explaining what the ad was based on">
<video disableRemotePlayback autoplay muted playsinline loop>
<source src="https://kstatic.googleusercontent.com/files/6e46f56ad417933c4a1ad1f796bf35fb04e90a0801e2632864b98cfc214ff04a6dc6f282ffa5f558944f253d782dc06b8489947574dcd66112d98b731bce1b51" alt="" type="video/mp4">
</video>
</div>
<div class="glue-grid__col glue-grid__col--span-5 glue-grid__col--span-6-md
glue-mod-order-2-md">
<div class="center-content">
<h3 class="mobile-left glue-eyebrow eyebrow">
Why this ad
</h3>
<h4 class="mobile-left glue-headline glue-headline--headline-4 title orphan-joiner">See what data we use to show ads</h4>
<div class="mobile-left text-description glue-grey-700">
<p>The “Why this ad” feature helps you understand why you are seeing a given ad. For example, you may discover you are seeing a camera ad because you’ve searched for cameras, visited photography websites, or clicked on ads for cameras before.</p>
</div>
</div>
</div>
</div>
<div class="spacer-module spacer-sm6"></div>
<div class="glue-page glue-grid feature-list-with-animations _ads-advertiser-identity-verification fade-in fade-in-init">
<div class="glue-grid__col glue-grid__col--span-1 glue-grid__col--span-0-md
glue-mod-order-1-md"></div>
<div class="asset-container glue-grid__col glue-grid__col--span-5
glue-grid__col--span-6-md
glue-mod-order-3-md"
aria-label="Mock of “Who paid for this ad” page within My Ad Center that shows how much the advertiser paid for a given ad">
<picture >
<!--[if IE 9]><video style="display: none;"><![endif]-->
<source srcset="https://lh3.googleusercontent.com/VnBNJcN43uYQmdigcP_DlKcj46ZUuV-fz1k1tTK31ki0DSRNGX_jUIoKcPsVuqnaGrLHRDvKxYI1npgoLSiJBSRm7IqHzXdbK3Qlpgg-N9Knve37ag=w500-rp, https://lh3.googleusercontent.com/VnBNJcN43uYQmdigcP_DlKcj46ZUuV-fz1k1tTK31ki0DSRNGX_jUIoKcPsVuqnaGrLHRDvKxYI1npgoLSiJBSRm7IqHzXdbK3Qlpgg-N9Knve37ag=w1000-rp 2x" loading="lazy" >
<!--[if IE 9]></video><![endif]-->
<img src="https://lh3.googleusercontent.com/VnBNJcN43uYQmdigcP_DlKcj46ZUuV-fz1k1tTK31ki0DSRNGX_jUIoKcPsVuqnaGrLHRDvKxYI1npgoLSiJBSRm7IqHzXdbK3Qlpgg-N9Knve37ag=w500-rp" class="image-content" loading="lazy" alt="Mock of “Who paid for this ad” page within My Ad Center that shows how much the advertiser paid for a given ad">
</picture>
</div>
<div class="glue-grid__col glue-grid__col--span-5 glue-grid__col--span-6-md
glue-mod-order-2-md">
<div class="center-content">
<h3 class="mobile-left glue-eyebrow eyebrow">
Advertiser identity verification
</h3>
<h4 class="mobile-left glue-headline glue-headline--headline-4 title orphan-joiner">Learn about the advertisers behind the ads you see</h4>
<div class="mobile-left text-description glue-grey-700">
<p>To provide you with more information about who is advertising to you, we are working to verify the identity of the advertisers on our platforms. As part of this initiative, advertisers are required to complete a verification program in order to buy ads from Google, and you will see ad disclosures that list the name and country of the advertiser.</p>
</div>
<div class="glue-mod-spacer-3-top"></div>
<div class="mobile-left link-item">
<a
class="glue-button glue-button--low-emphasis main-cta"
href="https://www.blog.google/products/ads/advertiser-identity-verification-for-transparency/"
aria-label="Learn about advertiser verification"
data-id-element="/privacy/ads-and-data/.5346519260332032.a.1"
>
<span>Learn about advertiser verification</span>
<svg alt="" role="img" aria-hidden="true"
class="glue-icon glue-icon--24px glue-icon--social">
<use xlink:href="/static-2020/img/glue-icons.svg?cache=de92586#open-in-new"></use>
</svg>
</a>
</div>
</div>
</div>
</div>
<div class="spacer-module spacer-sm8"></div>
<section class="card-galleries cards-4">
<picture class="logo glue-mod-spacer-2-bottom" >
<!--[if IE 9]><video style="display: none;"><![endif]-->
<source srcset="https://lh3.googleusercontent.com/EriIYEcDWSErfHD8LNAK9kv1qYQ1uGfLbK2bJzrA9oO3lYPqAcSmIJ_gG2b_1TYkDMiHhBVRtKjuxzI08z0x4YE46ICmOlQYRv-9mjfMKACT788m_J8=w182-l90-sg-c0xffffff, https://lh3.googleusercontent.com/EriIYEcDWSErfHD8LNAK9kv1qYQ1uGfLbK2bJzrA9oO3lYPqAcSmIJ_gG2b_1TYkDMiHhBVRtKjuxzI08z0x4YE46ICmOlQYRv-9mjfMKACT788m_J8=w364-l90-sg-c0xffffff 2x" loading="lazy" >
<!--[if IE 9]></video><![endif]-->
<img src="https://lh3.googleusercontent.com/EriIYEcDWSErfHD8LNAK9kv1qYQ1uGfLbK2bJzrA9oO3lYPqAcSmIJ_gG2b_1TYkDMiHhBVRtKjuxzI08z0x4YE46ICmOlQYRv-9mjfMKACT788m_J8=w182-l90-sg-c0xffffff" class="" loading="lazy" alt="Blue safety shield with pointed tip and Google's capital G logo in the middle">
</picture>
<div class="glue-mod-text-center glue-headline glue-headline--headline-3 main-title" aria-label="Explore more ways we keep you safe online." >Explore more ways we<br/> keep you safe online.</div>
<div class="desktop glue-mod-spacer-5-top glue-mod-spacer-8-bottom">
<a
class="card glue-mod-box-shadow-2"
href="../../security/built-in-protection/"
aria-label="Learn more about built-in security"
data-id-element="/privacy/ads-and-data/.6273917824794624.a.1.1"
>
<div class="title glue-mod-spacer-1-bottom">Built-in security</div>
<div class="description">Learn more about our automatic security protections.</div>
<svg alt="" role="img" aria-hidden="true" class="icon glue-icon glue-icon--arrow-forward">
<use xlink:href="/static-2020/img/glue-icons.svg?cache=de92586#arrow-forward"></use>
</svg>
</a>
<a
class="card glue-mod-box-shadow-2"
href="../../privacy/privacy-controls/"
aria-label="Learn more about privacy controls"
data-id-element="/privacy/ads-and-data/.6273917824794624.a.1.2"
>
<div class="title glue-mod-spacer-1-bottom">Privacy controls</div>
<div class="description">Choose the privacy settings that are right for you.</div>
<svg alt="" role="img" aria-hidden="true" class="icon glue-icon glue-icon--arrow-forward">
<use xlink:href="/static-2020/img/glue-icons.svg?cache=de92586#arrow-forward"></use>
</svg>
</a>
<a
class="card glue-mod-box-shadow-2"
href="../../privacy/data/"
aria-label="Learn more about data practices"
data-id-element="/privacy/ads-and-data/.6273917824794624.a.1.3"
>
<div class="title glue-mod-spacer-1-bottom">Data practices</div>
<div class="description">Learn more about how we respect your privacy with responsible data practices.</div>
<svg alt="" role="img" aria-hidden="true" class="icon glue-icon glue-icon--arrow-forward">
<use xlink:href="/static-2020/img/glue-icons.svg?cache=de92586#arrow-forward"></use>
</svg>
</a>
<a
class="card glue-mod-box-shadow-2"
href="../../security/security-tips/"
aria-label="Learn more about security tips"
data-id-element="/privacy/ads-and-data/.6273917824794624.a.1.4"
>
<div class="title glue-mod-spacer-1-bottom">Security tips</div>
<div class="description">Discover quick tips and best practices to stay safe online.</div>
<svg alt="" role="img" aria-hidden="true" class="icon glue-icon glue-icon--arrow-forward">
<use xlink:href="/static-2020/img/glue-icons.svg?cache=de92586#arrow-forward"></use>
</svg>
</a>
</div>
<div class="mobile glue-mod-spacer-6-bottom glue-mod-spacer-6-top">
<div class="glue-carousel safety-carousel until-load"
data-glue-pagination="section-gallery-pagination"