-
Notifications
You must be signed in to change notification settings - Fork 0
/
policy-example.html
1901 lines (1636 loc) · 140 KB
/
policy-example.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
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>
<!-- saved from url=(0108)file:///Users/KRobinson/Documents/google%20page/Prototype%20of%20Lexipol%20Unified%20Menu%20-%20Learning.htm -->
<html class="glue-flexbox glue-flexbox glue-app-ready ng-scope glue-flexbox" lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><style type="text/css">@charset "UTF-8";[ng\:cloak],[ng-cloak],[data-ng-cloak],[x-ng-cloak],.ng-cloak,.x-ng-cloak,.ng-hide:not(.ng-hide-animate){display:none !important;}ng\:form{display:block;}.ng-animate-shim{visibility:hidden;}.ng-anchor{position:absolute;}</style><style type="text/css">@charset "UTF-8";[ng\:cloak],[ng-cloak],[data-ng-cloak],[x-ng-cloak],.ng-cloak,.x-ng-cloak,.ng-hide:not(.ng-hide-animate){display:none !important;}ng\:form{display:block;}.ng-animate-shim{visibility:hidden;}.ng-anchor{position:absolute;}</style>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta content="initial-scale=1, minimum-scale=1, width=device-width" name="viewport">
<title>Interactive Mockup of Lexipol Unified Menu</title>
<meta name="referrer" content="no-referrer">
<!--<base href="/about/">--><!--<base href=".">--><!--<base href=".">--><base href=".">
<link rel="apple-touch-icon-precomposed" sizes="180x180" href="https://storage.googleapis.com/operating-anagram-8280/apple-touch-icon.png">
<link rel="icon" href="https://www.lexipol.com/wp-content/uploads/2018/06/cropped-favicon_sheild-32x32.png" sizes="32x32">
<link rel="icon" href="https://www.lexipol.com/wp-content/uploads/2018/06/cropped-favicon_sheild-192x192.png" sizes="192x192">
<link rel="apple-touch-icon" href="https://www.lexipol.com/wp-content/uploads/2018/06/cropped-favicon_sheild-180x180.png">
<meta name="msapplication-TileImage" content="https://www.lexipol.com/wp-content/uploads/2018/06/cropped-favicon_sheild-270x270.png">
<link href="./Prototype of Lexipol Unified Menu_files/css" rel="stylesheet">
<link href="./Prototype of Lexipol Unified Menu_files/index.min.css" rel="stylesheet">
<script src="./Prototype of Lexipol Unified Menu_files/detect.min.js"></script>
<!--
<style type="text/css">#cookieBar {
background-color: #5a5a5a;
border: none;
border-radius: 0;
-moz-border-radius: 0;
-webkit-border-radius: 0;
bottom: 0;
color: #fff;
left: 0;
margin: 0;
position: fixed;
right: 0;
width: 100%;
z-index: 999;
}
#cookieBar .cookieBarInner {
padding: 10px 15px;
}
#cookieBar .cookieBarText, #cookieBar .cookieBarButtons {
font-family: arial,sans-serif;
font-size: 13px;
font-weight: 600;
line-height: 1.8;
margin-right: 10px;
}
@media (max-width: 720px) #cookieBar .cookieBarText {
display: block;
margin-bottom: 5px;
}
#cookieBar .cookieBarButton:first-child {
margin-right: 5px;
}
#cookieBar .cookieBarButton {
background-color: #303030;
border: 1px solid rgba(0,0,0,.1);
border-radius: 2px;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
color: #fff;
cursor: pointer;
line-height: 19px;
padding: 4px 8px;
text-decoration: none;
white-space: nowrap;
}</style><style type="text/css">#cookieBar {
background-color: #5a5a5a;
border: none;
border-radius: 0;
-moz-border-radius: 0;
-webkit-border-radius: 0;
bottom: 0;
color: #fff;
left: 0;
margin: 0;
position: fixed;
right: 0;
width: 100%;
z-index: 999;
}
#cookieBar .cookieBarInner {
padding: 10px 15px;
}
#cookieBar .cookieBarText, #cookieBar .cookieBarButtons {
font-family: arial,sans-serif;
font-size: 13px;
font-weight: 600;
line-height: 1.8;
margin-right: 10px;
}
@media (max-width: 720px) #cookieBar .cookieBarText {
display: block;
margin-bottom: 5px;
}
#cookieBar .cookieBarButton:first-child {
margin-right: 5px;
}
#cookieBar .cookieBarButton {
background-color: #303030;
border: 1px solid rgba(0,0,0,.1);
border-radius: 2px;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
color: #fff;
cursor: pointer;
line-height: 19px;
padding: 4px 8px;
text-decoration: none;
white-space: nowrap;
}</style>
-->
</head>
<body data-ng-controller="MainController as ctrl" class="ng-scope">
<!-- Google Cookie Consent Bar -->
<!--
<script data-autoload-cookie-consent-bar="true" src="./Prototype of Lexipol Unified Menu_files/cookie_consent_bar.v2.js"></script>
-->
<!-- End Google Cookie Consent Bar -->
<div class="hercules-header h-c-header gmp-header h-c-header--product-initiative">
<div class="h-c-header__bar gmp-header__bar" dropdown="">
<div class="h-c-header__hamburger h-c-header__hamburger--first-tier">
<div class="h-c-header__hamburger-wrapper">
<button type="button" data-g-event="product: analytics: overview" data-g-action="mobile: open global nav" data-g-label="global nav" class="h-js-header__hamburger-link h-c-header__hamburger-link" aria-controls="h-js-header__drawer" aria-expanded="false" aria-label="Open the navigation drawer">
<svg alt="" role="img" class="h-c-header__hamburger-img
h-c-header__hamburger-img--standard">
<use xlink:href="#h-burger"></use>
</svg>
<svg alt="" role="img" class="h-c-header__hamburger-img
h-c-header__hamburger-img--reversed">
<use xlink:href="#h-burger"></use>
</svg>
</button>
</div>
</div>
<div class="h-c-header__lockup">
<div class="h-c-header__company-logo">
<a data-g-event="product: analytics: overview" data-g-action="logo" data-g-label="global nav" href="https://marketingplatform.google.com/about/" class="h-c-header__company-logo-link" title="Google">
<img src="./Prototype of Lexipol Unified Menu_files/lexipol-short-logo.jpg" style="
width: 60px;
top: -5px;
position: relative;
">
<svg alt="Google" role="img" class="h-c-header__company-logo-img
h-c-header__company-logo-img--reversed">
<use xlink:href="#h-white-google-logo"></use>
</svg>
</a>
</div>
<div class="h-c-header__product-logo">
<a data-g-event="product: analytics: overview" data-g-action="logo" data-g-label="global nav" href="https://marketingplatform.google.com/about/" class="h-c-header__product-logo-link">
<span class="h-c-header__product-logo-text gmp-logo-text">Lexipol Platform</span>
</a>
</div>
</div>
<div class="h-c-header__hamburger h-c-header__hamburger--second-tier">
<div class="h-c-header__hamburger-wrapper">
<button type="button" class="h-js-header__hamburger-link h-c-header__hamburger-link" aria-controls="h-js-header__drawer" aria-expanded="false" aria-label="Open the navigation drawer">
<svg alt="" role="img" class="h-c-header__hamburger-img
h-c-header__hamburger-img--standard">
<use xlink:href="#h-burger"></use>
</svg>
<svg alt="" role="img" class="h-c-header__hamburger-img
h-c-header__hamburger-img--reversed">
<use xlink:href="#h-burger"></use>
</svg>
</button>
</div>
</div>
<nav class="h-c-header__nav">
<ul class="h-c-header__nav-list">
<li class="h-c-header__nav-li" aria-level="1">
<a data-g-event="product: analytics: overview" data-g-action="for small businesses" data-g-label="global nav" href="https://kenshen.github.io/trash/policy-example.html" class="h-c-header__nav-li-link h-is-highlighted" aria-expanded="true" data-dropdown-target="smb-subnav">Policy</a>
</li>
<li class="h-c-header__nav-li" aria-level="1">
<a data-g-event="product: analytics: overview" data-g-action="for enterprises" data-g-label="global nav" href="https://kenshen.github.io/trash/Prototype%20of%20Lexipol%20Unified%20Menu.htm" class="h-c-header__nav-li-link" data-dropdown-target="enterprise-subnav">Learning</a>
</li>
<li class="h-c-header__nav-li" aria-level="1">
<a data-g-event="product: analytics: overview" data-g-action="for enterprises" data-g-label="global nav" href="https://kenshen.github.io/trash/ptbnl.html" class="h-c-header__nav-li-link" data-dropdown-target="enterprise-subnav2">PTBNL</a>
</li>
<li class="h-c-header__nav-li" aria-level="1">
<a data-g-event="product: analytics: overview" data-g-action="resources" data-g-label="global nav" href="" class="h-c-header__nav-li-link">Grants</a>
</li>
<li class="h-c-header__nav-li" aria-level="1">
<a data-g-event="product: analytics: overview" data-g-action="blog" data-g-label="global nav" href="" target="_self" class="h-c-header__nav-li-link">Community</a>
</li>
</ul>
</nav>
<navx2>
<div class="h-c-header__cta h-c-header__cta--top-tier">
<ul class="h-c-header__cta-list">
<li class="h-c-header__cta-li h-c-header__cta-li--secondary">
<img src="./Prototype of Lexipol Unified Menu_files/notifications.png" style="
height: 40px;
POSITION: RELATIVE;
top: 3px;
right: 15px;
">
<ul style="z-index:5; left:-30px;">
<li><a href="">Your Assignment is <b>due soon</b>!</a></li>
<li> <a href="">You have an upcoming Wellness Webinar tomorrow.</a></li>
<li><a href="">You've earned a new certificate of course completion.</a></li>
<li> <a href="">You have a new assignment.</a></li>
<li> <a href="">You have a new Policy to review.</a></li>
</ul>
</li>
<li class="h-c-header__cta-li h-c-header__cta-li--secondary">
<img src="./Prototype of Lexipol Unified Menu_files/ron-swanson.jpeg" style="
height: 40px;
POSITION: RELATIVE;
top: 3px;
right: -7px;
">
<a data-g-event="product: analytics: overview" data-g-action="partners" data-g-label="global nav" href="" title="Partners" class="h-c-header__cta-li-link h-c-header__cta-li-link--secondary">Ron Swanson</a>
<ul style="z-index:5; left:20px;">
<li><a href="">My profile</a></li>
<li> <a href="">My newsletters</a></li>
<li><a href="">Billing</a></li>
<li> <a href="">Change password</a></li>
<li> <a href="">Logout</a></li>
</ul>
</li>
<li class="h-c-header__cta-li h-c-header__cta-li--secondary">
<img src="./Prototype of Lexipol Unified Menu_files/city-of-pawnee-logo.jpg" style="
height: 44px;
POSITION: RELATIVE;
top: 3px;
right: -7px;
z-index: 2;
">
<a data-g-event="product: analytics: overview" data-g-action="partners" data-g-label="global nav" href="" title="Partners" class="h-c-header__cta-li-link h-c-header__cta-li-link--secondary" style="
z-index: 1;
">City of Pawnee</a>
<ul style="z-index:5; left:200px;">
<li><a href="">Users</a></li>
<li> <a href="">Groups</a></li>
<li><a href="">--- Switch organizations ---</a></li>
<li><img src="./Prototype of Lexipol Unified Menu_files/city-of-pawnee-logo.jpg" style="
height: 44px;
POSITION: RELATIVE;
top: 3px;
right: 0px;
padding-right:10px;
padding-left:10px;
float:left;
z-index: 2;
"> <a href="" style="position:relative; top:-15px;">City of Fairfield</a></li>
<li><img src="./Prototype of Lexipol Unified Menu_files/city-of-pawnee-logo.jpg" style="
height: 44px;
POSITION: RELATIVE;
top: 3px;
right: 0px;
padding-right:10px;
padding-left:10px;
float:left;
z-index: 2;
"> <a href="" style="position:relative; top:-15px;">Solano County</a></li>
</ul>
</li>
<li class="h-c-header__cta-li h-c-header__cta-li--secondary">
<a data-g-event="product: analytics: overview" data-g-action="support" data-g-label="global nav" href="" title="Support" class="h-c-header__cta-li-link h-c-header__cta-li-link--secondary">Support</a>
</li>
</ul>
</div></navx2>
<div class="h-c-header__initiative-logo">
<img src="./Prototype of Lexipol Unified Menu_files/kms.jpg" style="
height: 40px;
position: relative;
top: 8px;
right: -10px;
">
<a data-g-event="product: analytics: overview" data-g-action="logo" data-g-label="sub nav" href="" class="h-c-header__initiative-logo-link" style="
position: Relative;
right: -26px;
">
<span class="h-c-header__initiative-logo-text">Policy</span>
</a>
</div>
<nav class="h-c-header__nav gmp-product-nav">
<navx>
<ul class="h-c-header__nav-list">
<li class="h-c-header__nav-li" aria-level="1">
<a aria-expanded="true" class="h-c-header__nav-li-link
h-is-active simplemenu">Manuals</a>
<ul>
<li><a href="">All Manuals</a></li>
<li><a href="">Issue Manuals</a></li>
<li> <a href="">New Manual</a></li>
<li> <a href="">Lexipol Manuals</a></li>
</ul>
</li>
<li class="h-c-header__nav-li" aria-level="1">
<a href="" class="h-c-header__nav-li-link
">Policies</a>
<ul> <li><a href="">All Policies</a></li>
<li><a href="">Issue Policies</a></li>
<li> <a href="">New Policy</a></li>
<li> <a href="">Lexipol Policies</a></li>
</ul>
</li>
<li class="h-c-header__nav-li" aria-level="1">
<a href="" class="h-c-header__nav-li-link
">Admin</a>
<ul> <li><a href="">Agency Profile Questionnaire</a></li>
<li><a href="">Policy Groups</a></li>
<li><a href="">Issued Policies (Learning)</a></li>
<li> <a href="">Policy Acknowledgement Reports (Learning)</a></li>
</ul>
</li>
</ul></navx>
<!-- MENUS!!! -->
<ul id="gmDropdown" class="dropdown-content">
</ul>
<ul id="gmDropdownEvents" class="dropdown-content">
</ul>
<ul id="gmDropdownDashboard" class="dropdown-content">
</ul>
<ul id="gmDropdownAdminlearning" class="dropdown-content">
</ul>
</nav>
<navx2>
<div class="h-c-header__cta">
<ul class="h-c-header__cta-list">
<li class="h-c-header__cta-li h-c-header__cta-li--secondary">
<a data-g-event="product: analytics: overview" data-g-action="sign in cta" data-g-label="sub nav" href="" target="_blank" rel="nofollow noopener" class="h-c-header__cta-li-link
h-c-header__cta-li-link--secondary">My KMS Policy Profile</a>
<ul style="z-index:5; left:-20px;">
<li><a href="">Personal Policy Settings</a></li>
<li> <a href="">Notification Preferences</a></li>
</ul>
</li>
<li class="h-c-header__cta-li h-c-header__cta-li--secondary">
<a data-g-event="product: analytics: overview" data-g-action="sign in cta" data-g-label="sub nav" href="" target="_blank" rel="nofollow noopener" class="h-c-header__cta-li-link
h-c-header__cta-li-link--secondary">Organization KMS Policy Settings</a>
<ul style="z-index:5; left:185px;">
<li><a href="">Agency Profile Questionnaire</a></li>
<li><a href="">Policy Roles</a></li>
<li> <a href="">Notification Preferences</a></li>
</ul>
</li>
<li class="h-c-header__cta-li h-c-header__cta-li--primary" style="display: none;">
<a data-g-event="product: analytics: overview" data-g-action="sign up cta" data-g-label="sub nav" href="https://analytics.google.com/analytics/?utm_source=marketingplatform.google.com&utm_medium=et&utm_campaign=marketingplatform.google.com%2Fabout%2Fanalytics-360%2F" target="_blank" rel="nofollow noopener" class="h-c-header__cta-li-link
h-c-header__cta-li-link--primary">Organization Learning Settings</a>
</li>
</ul>
</div>
</navx2>
<div class="h-c-header__bar-underside"></div>
<div class="dd-menu">
<nav class="dd-menu__nav">
<div class="dd-menu__section dd-menu__section--hero">
<div class="dd-menu__banner" data-dropdown-item="smb-subnav">
<span class="dd-menu__banner__header">Policy</span>
<p class="dd-menu__banner__text">Create and manage policies with our robust collaboration software.</p>
<a data-g-event="product: analytics: overview" data-g-action="for small businesses: learn more" data-g-label="global nav" class="h-c-button h-c-button--primary h-c-button--reversed">Get started</a>
</div>
<div class="dd-menu__banner" data-dropdown-item="enterprise-subnav">
<span class="dd-menu__banner__header">Learning and Tracking</span>
<p class="dd-menu__banner__text">Complete online training, document offline training, and track progress and compliance with training requirements.</p>
<a data-g-event="product: analytics: overview" data-g-action="for enterprise: learn more" data-g-label="global nav" class="h-c-button h-c-button--primary h-c-button--reversed">Get started</a>
</div>
<div class="dd-menu__banner" data-dropdown-item="enterprise-subnav2">
<span class="dd-menu__banner__header">Product to be Named Later</span>
<p class="dd-menu__banner__text">If Lexipol adds a new product, whether home-grown or via M&A, this unified menu can easily scale to handle it smoothly.</p>
<a data-g-event="product: analytics: overview" data-g-action="for enterprise: learn more" data-g-label="global nav" class="h-c-button h-c-button--primary h-c-button--reversed">Get started</a>
</div>
<div class="dd-menu__banner" data-dropdown-item="enterprise-subnav3">
<span class="dd-menu__banner__header">new menu for training</span>
<p class="dd-menu__banner__text">maybe delete this section</p>
<a data-g-event="product: analytics: overview" data-g-action="for enterprise: learn more" data-g-label="global nav" class="h-c-button h-c-button--primary h-c-button--reversed">Get started</a>
</div>
</div>
<div class="dd-menu__section dd-menu__section--nav">
<div class="dd-menu__nav-list-ctr" data-dropdown-item="smb-subnav">
<ul class="dd-menu__nav-list">
<li class="dd-menu__nav-item" aria-level="2">
<a data-g-event="product: analytics: overview" data-g-action="for small businesses: analytics" data-g-label="global nav" class="dd-menu__nav-item__link ">
<span class="dd-menu__nav-item__title">Manuals</span>
<p class="dd-menu__nav-item__desc">Create and manage manuals to organize policies across your teams.</p>
</a>
</li>
<li class="dd-menu__nav-item" aria-level="2">
<a data-g-event="product: analytics: overview" data-g-action="for small businesses: data studio" data-g-label="global nav" class="dd-menu__nav-item__link ">
<span class="dd-menu__nav-item__title">Policies</span>
<p class="dd-menu__nav-item__desc">Upload, create and manage policies across your team with robust collaboration tools.</p>
</a>
</li>
<li class="dd-menu__nav-item" aria-level="2">
<a data-g-event="product: analytics: overview" data-g-action="for small businesses: optimize" data-g-label="global nav" class="dd-menu__nav-item__link ">
<span class="dd-menu__nav-item__title">Archives</span>
<p class="dd-menu__nav-item__desc">Check archives of past versions to help with audits and accountability.</p>
</a>
</li>
</ul>
</div>
<div class="dd-menu__nav-list-ctr" data-dropdown-item="enterprise-subnav">
<span class="dd-menu__eyebrow">Training</span> <ul class="dd-menu__nav-list">
<li class="dd-menu__nav-item" aria-level="2">
<a data-g-event="product: analytics: overview" data-g-label="global nav" class="dd-menu__nav-item__link ">
<span class="dd-menu__nav-item__title">Training Content</span>
<p class="dd-menu__nav-item__desc">Online courses from Lexipol, custom courses built by your organization, and tracking of offline training.</p>
</a>
</li>
<li class="dd-menu__nav-item" aria-level="2">
<a data-g-event="product: analytics: overview" data-g-action="for enterprises: search ads 360" data-g-label="global nav" class="dd-menu__nav-item__link ">
<span class="dd-menu__nav-item__title">Events</span>
<p class="dd-menu__nav-item__desc">Host and attend both in-person and web-hosted events for training credit and certifications.</p>
</a>
</li>
<li class="dd-menu__nav-item" aria-level="2">
<a data-g-event="product: analytics: overview" data-g-action="for enterprises: search ads 360" data-g-label="global nav" class="dd-menu__nav-item__link ">
<span class="dd-menu__nav-item__title">My Dashboard</span>
<p class="dd-menu__nav-item__desc">View all of your training history and manage your personal training data.</p>
</a>
</li>
</ul>
</div>
<div class="dd-menu__nav-list-ctr" data-dropdown-item="enterprise-subnav">
<span class="dd-menu__eyebrow">Admin</span> <ul class="dd-menu__nav-list">
<li class="dd-menu__nav-item" aria-level="2">
<a data-g-event="product: analytics: overview" data-g-action="for enterprises: analytics 360" data-g-label="global nav" class="dd-menu__nav-item__link ">
<span class="dd-menu__nav-item__title">Organization Management</span>
<p class="dd-menu__nav-item__desc">Users, groups, roles, and organization settings.</p>
</a>
</li>
<li class="dd-menu__nav-item" aria-level="2">
<a data-g-event="product: analytics: overview" data-g-action="for enterprises: data studio" data-g-label="global nav" class="dd-menu__nav-item__link ">
<span class="dd-menu__nav-item__title">Plans and Assignments</span>
<p class="dd-menu__nav-item__desc">Define what needs to be learned, who needs to learn it, when it needs to be learned by, and track progress towards learning goals.</p>
</a>
</li>
<li class="dd-menu__nav-item" aria-level="2">
<a data-g-event="product: analytics: overview" data-g-action="for enterprises: optimize 360" data-g-label="global nav" class="dd-menu__nav-item__link ">
<span class="dd-menu__nav-item__title">Content Management</span>
<p class="dd-menu__nav-item__desc">Create and manage courses, topics, tags, training codes, surveys and more.</p>
</a>
</li>
<li class="dd-menu__nav-item" aria-level="2">
<a data-g-event="product: analytics: overview" data-g-action="for enterprises: surveys 360" data-g-label="global nav" class="dd-menu__nav-item__link ">
<span class="dd-menu__nav-item__title">Integrations</span>
<p class="dd-menu__nav-item__desc">Manage data related to your integrations with other products.</p>
</a>
</li>
<li class="dd-menu__nav-item" aria-level="2">
<a data-g-event="product: analytics: overview" data-g-action="for enterprises: tag manager 360" data-g-label="global nav" class="dd-menu__nav-item__link ">
<span class="dd-menu__nav-item__title">Reports</span>
<p class="dd-menu__nav-item__desc">View online reports, download on-demand reports, manage custom reporting templates, and schedule reports by email.</p>
</a>
</li>
</ul>
</div>
<div class="dd-menu__nav-list-ctr" data-dropdown-item="enterprise-subnav2">
<span class="dd-menu__eyebrow">FEATURES</span> <ul class="dd-menu__nav-list">
<li class="dd-menu__nav-item" aria-level="2">
<a data-g-event="product: analytics: overview" data-g-action="for enterprises: analytics 360" data-g-label="global nav" class="dd-menu__nav-item__link ">
<span class="dd-menu__nav-item__title">Mental Health</span>
<p class="dd-menu__nav-item__desc">Make sure your staff is in a healthy mental state each time they start their shift.</p>
</a>
</li>
<li class="dd-menu__nav-item" aria-level="2">
<a data-g-event="product: analytics: overview" data-g-action="for enterprises: data studio" data-g-label="global nav" class="dd-menu__nav-item__link ">
<span class="dd-menu__nav-item__title">Wellness Tips</span>
<p class="dd-menu__nav-item__desc">Review mental and physical tips related to your specific needs as they change on a daily basis.</p>
</a>
</li>
<li class="dd-menu__nav-item" aria-level="2">
<a data-g-event="product: analytics: overview" data-g-action="for enterprises: optimize 360" data-g-label="global nav" class="dd-menu__nav-item__link ">
<span class="dd-menu__nav-item__title">Reports</span>
<p class="dd-menu__nav-item__desc">Track your own mental health status over time, and analyze reports for the team members you lead.</p>
</a>
</li>
</ul>
</div>
<div class="dd-menu__nav-list-ctr" data-dropdown-item="enterprise-subnav3">
<span class="dd-menu__eyebrow">FEATURESx</span> <ul class="dd-menu__nav-list">
<li class="dd-menu__nav-item" aria-level="2">
<a data-g-event="product: analytics: overview" data-g-action="for enterprises: analytics 360" data-g-label="global nav" class="dd-menu__nav-item__link ">
<span class="dd-menu__nav-item__title">Mental Health</span>
<p class="dd-menu__nav-item__desc">Make sure your staff is in a healthy mental state each time they start their shift.</p>
</a>
</li>
<li class="dd-menu__nav-item" aria-level="2">
<a data-g-event="product: analytics: overview" data-g-action="for enterprises: data studio" data-g-label="global nav" class="dd-menu__nav-item__link ">
<span class="dd-menu__nav-item__title">Wellness Tips</span>
<p class="dd-menu__nav-item__desc">Review mental and physical tips related to your specific needs as they change on a daily basis.</p>
</a>
</li>
<li class="dd-menu__nav-item" aria-level="2">
<a data-g-event="product: analytics: overview" data-g-action="for enterprises: optimize 360" data-g-label="global nav" class="dd-menu__nav-item__link ">
<span class="dd-menu__nav-item__title">Reports</span>
<p class="dd-menu__nav-item__desc">Track your own mental health status over time, and analyze reports for the team members you lead.</p>
</a>
</li>
</ul>
</div>
</div>
</nav>
</div></div>
<div id="h-js-header__drawer" role="navigation" class="h-c-header__drawer" tabindex="0" aria-label="Navigation drawer">
<div class="h-c-header__drawer-content">
<div class="h-c-header__drawer-bar h-c-header__drawer-bar--inline">
<div class="h-c-header__drawer-lockup">
<div class="h-c-header__drawer-company-logo">
<div class="h-c-header__drawer-company-logo-link" title="Google">
<svg alt="Google" role="img" class="h-c-header__drawer-company-logo-img">
<use xlink:href="#h-color-google-logo"></use>
</svg>
</div>
</div>
<div class="h-c-header__drawer-product-logo">
<div class="h-c-header__drawer-product-logo-link">
<span class="h-c-header__drawer-product-logo-text h-c-header__drawer-product-logo-text--gmp">
<a data-g-event="product: analytics: overview" data-g-action="logo" data-g-label="global nav" href="https://marketingplatform.google.com/about/" class="h-c-header__product-logo-link">
<span class="h-c-header__product-logo-text gmp-logo-text">Marketing Platform</span>
</a>
</span>
</div>
</div>
</div>
<div class="h-c-header__drawer-initiative-logo">
<div class="h-c-header__drawer-initiative-logo-link">
<span class="h-c-header__drawer-initiative-logo-text">Analytics</span>
</div>
</div>
</div>
<nav class="h-c-header__drawer-nav">
<ul class="h-c-header__drawer-nav-list">
<li class="h-c-header__drawer-nav-li" aria-level="1">
<a data-g-event="product: analytics: overview" data-g-action="overview" data-g-label="sub nav" href="https://marketingplatform.google.com/about/analytics/" class="h-c-header__drawer-nav-li-link
h-is-active">
Overview
</a>
</li>
<li class="h-c-header__drawer-nav-li" aria-level="1">
<a data-g-event="product: analytics: overview" data-g-action="benefits" data-g-label="sub nav" href="https://marketingplatform.google.com/about/analytics/benefits/" class="h-c-header__drawer-nav-li-link
">
Benefits
</a>
</li>
<li class="h-c-header__drawer-nav-li" aria-level="1">
<a data-g-event="product: analytics: overview" data-g-action="features" data-g-label="sub nav" href="https://marketingplatform.google.com/about/analytics/features/" class="h-c-header__drawer-nav-li-link
">
Features
</a>
</li>
<li class="h-c-header__drawer-nav-li" aria-level="1">
<a data-g-event="product: analytics: overview" data-g-action="compare" data-g-label="sub nav" href="https://marketingplatform.google.com/about/analytics/compare/" class="h-c-header__drawer-nav-li-link
">
Compare
</a>
</li>
</ul>
</nav>
</div>
<div class="h-c-header__drawer-cta">
<ul class="h-c-header__drawer-cta-list">
<li class="h-c-header__drawer-cta-li h-c-header__drawer-cta-li--secondary">
<a data-g-event="product: analytics: overview" data-g-action="sign in cta" data-g-label="global nav" href="https://analytics.google.com/analytics/web/?utm_source=marketingplatform.google.com&utm_medium=et&utm_campaign=marketingplatform.google.com%2Fabout%2Fanalytics%2F" title="Sign in to Analytics" class="h-c-header__drawer-cta-li-link h-c-header__drawer-cta-li-link--secondary" target="_blank" rel="nofollow noopener">
Sign in to Analytics
</a>
</li>
<li class="h-c-header__drawer-cta-li h-c-header__drawer-cta-li--primary">
<a data-g-event="product: analytics: overview" data-g-action="sign up cta" data-g-label="global nav" href="https://analytics.google.com/analytics/?utm_source=marketingplatform.google.com&utm_medium=et&utm_campaign=marketingplatform.google.com%2Fabout%2Fanalytics-360%2F" title="Start for free" class="h-c-header__drawer-cta-li-link h-c-header__drawer-cta-li-link--primary" target="_blank" rel="nofollow noopener">
Start for free
</a>
</li>
</ul>
</div>
</div>
<div id="h-js-header__drawer-backdrop" class="h-c-header__drawer-backdrop"></div></div><main class="gmp-page gmp-page--no-newsletter" style="
border-right-width: 0px;
border-left-width: 0px;
">
<img src="./Prototype of Lexipol Unified Menu_files/kms-screenshot.png" style="
width: 2500px;
">
<section class="gmp-section gmp-mb-l" style="
display: none;
">
<div class="secondary-hero">
<div class="secondary-hero__frame">
<div class="secondary-hero__background">
<div class="gmp-banner">
<picture>
<source media="(max-width: 640px)" srcset="static/images/gmp/analytics-smb-hero-mobile.jpg, static/images/gmp/analytics-smb-hero-mobile_2x.jpg 2x">
<source media="(min-width: 641px)" srcset="static/images/gmp/analytics-smb-hero.jpg, static/images/gmp/analytics-smb-hero_2x.jpg 2x">
<img src="./Prototype of Lexipol Unified Menu_files/analytics-smb-hero.jpg" alt="Get to know your customers." class="gmp-no-grab secondary-hero__image">
</picture>
</div>
</div>
<div class="secondary-hero__content">
<div class="h-c-page">
<div class="h-c-grid">
<div class="h-c-grid__col h-c-grid__col--8 h-c-grid__col-l--6 h-c-grid__col-l--offset-1 h-c-grid__col-xl--5">
<div class="secondary-hero__text-box">
<h1 class="h-c-headline secondary-hero__headline h-has-bottom-margin">
Get to know your customers.
</h1>
<h2 class="h-c-description">Get a deeper understanding of your customers. Google Analytics gives you the free tools you need to analyze data for your business in one place.</h2>
<a data-g-event="product: analytics: overview" data-g-action="sign up cta" data-g-label="hero" href="https://analytics.google.com/analytics/web/?authuser=0#/provision/SignUp" class="h-c-button h-c-button--primary" title="Start for free" target="_blank" rel="nofollow noopener">Start for free</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div> </section>
<section class="gmp-section gmp-mb-l" style="
display: none;
">
<div class="highlights-module">
<div class="h-c-page">
<div class="h-c-grid highlights-module__sticky-wrapper">
<div class="h-c-grid__col h-c-grid__col-l--6">
<div class="highlights-module__sticky-el">
<img alt="See&nbsp;what’s&nbsp;in&nbsp;it for&nbsp;you." srcset="static/images/gmp/analytics-smb-benefit.jpg 1x, static/images/gmp/analytics-smb-benefit_2x.jpg 2x" src="./Prototype of Lexipol Unified Menu_files/analytics-smb-benefit.jpg" class="gmp-no-grab highlights-module__image-desktop">
</div>
</div>
<div class="h-c-grid__col h-c-grid__col-l--5 highlights-module__content">
<h3 class="h-c-headline h-c-headline--one h-has-bottom-margin">See what’s in it for you.</h3>
<p></p>
<picture>
<source media="(max-width: 767px)" srcset="static/images/gmp/analytics-smb-benefit-mobile.jpg 1x, static/images/gmp/analytics-smb-benefit-mobile_2x.jpg 2x">
<source media="(min-width: 768px)" srcset="static/images/gmp/analytics-smb-benefit.jpg 1x, static/images/gmp/analytics-smb-benefit_2x.jpg 2x">
<img src="./Prototype of Lexipol Unified Menu_files/analytics-smb-benefit.jpg" alt="See&nbsp;what’s&nbsp;in&nbsp;it for&nbsp;you." class="gmp-no-grab highlights-module__image-mobile">
</picture>
<div class="highlights-module__listing">
<ul class="highlights-module__highlights">
<li class="highlights-module__highlight">
<picture>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 45" alt="" role="img" aria-label="landscape icon" class="gmp-circle-icon gmp-circle-icon--yellow highlights-module__icon">
<title>landscape icon</title>
<circle class="gmp-icon--accent" cx="22.5" cy="22.5" r="22.5"></circle>
<path d="m35.9 29.57v-14.62a2.44 2.44 0 0 0 -2.44-2.44h-21.92a2.44 2.44 0 0 0 -2.44 2.44v14.62a2.44 2.44 0 0 0 2.44 2.43h21.92a2.44 2.44 0 0 0 2.44-2.43zm-17.66-6.7 3 3.66 4.31-5.53 5.45 7.35h-17z" fill="#fff"></path>
</svg>
</picture>
<h4 class="h-c-headline h-c-headline--four h-has-bottom-margin">Build a complete picture.</h4>
<p>Understand your site and app users to better evaluate the performance of your marketing, content, products, and more.</p>
</li>
<li class="highlights-module__highlight">
<picture>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 45" alt="" role="img" aria-label="bulb icon" class="gmp-circle-icon gmp-circle-icon--yellow highlights-module__icon">
<title>bulb icon</title>
<circle class="gmp-icon--accent" cx="22.5" cy="22.5" r="22.5"></circle>
<path d="m18.74 33a1.26 1.26 0 0 0 1.26 1.21h5a1.26 1.26 0 0 0 1.26-1.21v-1.29h-7.52zm3.76-23.84a8.71 8.71 0 0 0 -8.77 8.77 8.55 8.55 0 0 0 3.76 7.14v2.93a1.26 1.26 0 0 0 1.25 1.25h7.52a1.26 1.26 0 0 0 1.25-1.25v-2.93a8.9 8.9 0 0 0 3.76-7.14 8.71 8.71 0 0 0 -8.77-8.77z" fill="#fff"></path>
</svg>
</picture>
<h4 class="h-c-headline h-c-headline--four h-has-bottom-margin">Get insights only Google can give.</h4>
<p>Access Google’s unique insights and machine learning capabilities to help get the most out of your data.</p>
</li>
<li class="highlights-module__highlight">
<picture>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 45" alt="" role="img" aria-label="restart icon" class="gmp-circle-icon gmp-circle-icon--yellow highlights-module__icon">
<title>restart icon</title>
<circle class="gmp-icon--accent" cx="22.5" cy="22.5" r="22.5"></circle>
<path d="m22.5 14.22v4l5.36-5.36-5.36-5.34v4a10.7 10.7 0 0 0 -9.06 16.48l2-2a7.87 7.87 0 0 1 -.94-3.75 8 8 0 0 1 8-8.03zm9.06 2.33-2 2a8 8 0 0 1 -7.06 11.75v-4l-5.36 5.36 5.36 5.34v-4a10.7 10.7 0 0 0 9.06-16.43z" fill="#fff"></path>
</svg>
</picture>
<h4 class="h-c-headline h-c-headline--four h-has-bottom-margin">Connect your insights to results.</h4>
<p>Analytics is built to work with Google’s advertising and publisher products so you can use your analytics insights to reach the right customers.</p>
</li>
<li class="highlights-module__highlight">
<picture>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 45" alt="" role="img" aria-label="checklist icon" class="gmp-circle-icon gmp-circle-icon--yellow highlights-module__icon">
<title>checklist icon</title>
<circle class="gmp-icon--accent" cx="22.5" cy="22.5" r="22.5"></circle>
<path d="m25 20h-16v2.67h16zm0-5.34h-16v2.67h16zm-16 13.34h10.68v-2.66h-10.68zm26-6 2 2-9.3 9.35-6-6 2-2 4 4z" fill="#fff"></path>
</svg>
</picture>
<h4 class="h-c-headline h-c-headline--four h-has-bottom-margin">Make your data work for you.</h4>
<p>Process and share your data quickly with an easy-to-use interface and shareable reports.</p>
</li>
</ul>
<a data-g-event="product: analytics: overview" data-g-action="see all benefits" data-g-label="see whats in it for you" href="https://marketingplatform.google.com/about/analytics/benefits/" title="See all benefits" class="h-c-link gmp-link">See all benefits</a>
</div>
</div> </div>
<div class="highlights-module__carousel highlights-module__carousel--horizontal">
<div data-ng-mouseover="PaginationCtrl.stopTimer()" data-ng-mouseleave="PaginationCtrl.startTimer()" ng-transclude="" class="glue-pagination h-c-carousel h-c-carousel--simple ng-isolate-scope glue-o-pagination">
<div class="h-c-carousel__wrap ng-scope">
<ul class="glue-carousel" data-glue-carousel="" data-glue-pagination="demo-cyclical" data-glue-carousel-breakpoints="['x-small','small']" style="width: auto; transform: none;">
<li class="h-c-carousel__item">
<picture>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 45" alt="" role="img" aria-label="landscape icon" class="gmp-circle-icon gmp-circle-icon--yellow highlights-module__icon">
<title>landscape icon</title>
<circle class="gmp-icon--accent" cx="22.5" cy="22.5" r="22.5"></circle>
<path d="m35.9 29.57v-14.62a2.44 2.44 0 0 0 -2.44-2.44h-21.92a2.44 2.44 0 0 0 -2.44 2.44v14.62a2.44 2.44 0 0 0 2.44 2.43h21.92a2.44 2.44 0 0 0 2.44-2.43zm-17.66-6.7 3 3.66 4.31-5.53 5.45 7.35h-17z" fill="#fff"></path>
</svg>
</picture>
<h4 class="h-c-headline h-c-headline--four highlights-module__subhead">Build a complete picture.</h4>
<p class="highlights-module__description">Understand your site and app users to better evaluate the performance of your marketing, content, products, and more.</p>
</li>
<li class="h-c-carousel__item">
<picture>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 45" alt="" role="img" aria-label="bulb icon" class="gmp-circle-icon gmp-circle-icon--yellow highlights-module__icon">
<title>bulb icon</title>
<circle class="gmp-icon--accent" cx="22.5" cy="22.5" r="22.5"></circle>
<path d="m18.74 33a1.26 1.26 0 0 0 1.26 1.21h5a1.26 1.26 0 0 0 1.26-1.21v-1.29h-7.52zm3.76-23.84a8.71 8.71 0 0 0 -8.77 8.77 8.55 8.55 0 0 0 3.76 7.14v2.93a1.26 1.26 0 0 0 1.25 1.25h7.52a1.26 1.26 0 0 0 1.25-1.25v-2.93a8.9 8.9 0 0 0 3.76-7.14 8.71 8.71 0 0 0 -8.77-8.77z" fill="#fff"></path>
</svg>
</picture>
<h4 class="h-c-headline h-c-headline--four highlights-module__subhead">Get insights only Google can give.</h4>
<p class="highlights-module__description">Access Google’s unique insights and machine learning capabilities to help get the most out of your data.</p>
</li>
<li class="h-c-carousel__item">
<picture>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 45" alt="" role="img" aria-label="restart icon" class="gmp-circle-icon gmp-circle-icon--yellow highlights-module__icon">
<title>restart icon</title>
<circle class="gmp-icon--accent" cx="22.5" cy="22.5" r="22.5"></circle>
<path d="m22.5 14.22v4l5.36-5.36-5.36-5.34v4a10.7 10.7 0 0 0 -9.06 16.48l2-2a7.87 7.87 0 0 1 -.94-3.75 8 8 0 0 1 8-8.03zm9.06 2.33-2 2a8 8 0 0 1 -7.06 11.75v-4l-5.36 5.36 5.36 5.34v-4a10.7 10.7 0 0 0 9.06-16.43z" fill="#fff"></path>
</svg>
</picture>
<h4 class="h-c-headline h-c-headline--four highlights-module__subhead">Connect your insights to results.</h4>
<p class="highlights-module__description">Analytics is built to work with Google’s advertising and publisher products so you can use your analytics insights to reach the right customers.</p>
</li>
<li class="h-c-carousel__item">
<picture>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 45" alt="" role="img" aria-label="checklist icon" class="gmp-circle-icon gmp-circle-icon--yellow highlights-module__icon">
<title>checklist icon</title>
<circle class="gmp-icon--accent" cx="22.5" cy="22.5" r="22.5"></circle>
<path d="m25 20h-16v2.67h16zm0-5.34h-16v2.67h16zm-16 13.34h10.68v-2.66h-10.68zm26-6 2 2-9.3 9.35-6-6 2-2 4 4z" fill="#fff"></path>
</svg>
</picture>
<h4 class="h-c-headline h-c-headline--four highlights-module__subhead">Make your data work for you.</h4>
<p class="highlights-module__description">Process and share your data quickly with an easy-to-use interface and shareable reports.</p>
</li>
</ul>
</div>
<div class="h-c-carousel__navigation ng-scope">
<ul role="tablist" class="glue-pagination-page-list ng-isolate-scope glue-o-pagination__page-list" data-glue-pagination="demo-cyclical"> <!-- ngRepeat: i in PageListCtrl.pageCollection --><li ng-repeat="i in PageListCtrl.pageCollection" data-page="1" class="glue-o-pagination__button-container glue-o-pagination__page-list-button-container ng-scope active" ng-class="{active: i == PageListCtrl.model.currentPage}" ng-show="PageListCtrl.activePageCollection[i - 1]" style=""> <!-- ngIf: PageListCtrl.getAriaControlId(i) --> <!-- ngIf: !PageListCtrl.getAriaControlId(i) --><button type="button" role="tab" class="glue-o-pagination__button glue-o-pagination__page-list-button ng-binding ng-scope" aria-selected="true" aria-label="" data-page="1" data-ng-focus="PageListCtrl.onFocus()" data-ng-blur="PageListCtrl.onBlur($event)" data-ng-click="PageListCtrl.setPage(i, $event)" data-ng-if="!PageListCtrl.getAriaControlId(i)"> 1</button><!-- end ngIf: !PageListCtrl.getAriaControlId(i) --> </li><!-- end ngRepeat: i in PageListCtrl.pageCollection --></ul>
</div>
<div class="h-c-carousel__wrap ng-scope">
<ul class="glue-carousel" data-glue-carousel="" data-glue-pagination="demo-cyclical" data-glue-carousel-breakpoints="['x-small','small']" style="width: auto; transform: none;">
<li class="h-c-carousel__item">
<picture>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 45" alt="" role="img" aria-label="landscape icon" class="gmp-circle-icon gmp-circle-icon--yellow highlights-module__icon">
<title>landscape icon</title>
<circle class="gmp-icon--accent" cx="22.5" cy="22.5" r="22.5"></circle>
<path d="m35.9 29.57v-14.62a2.44 2.44 0 0 0 -2.44-2.44h-21.92a2.44 2.44 0 0 0 -2.44 2.44v14.62a2.44 2.44 0 0 0 2.44 2.43h21.92a2.44 2.44 0 0 0 2.44-2.43zm-17.66-6.7 3 3.66 4.31-5.53 5.45 7.35h-17z" fill="#fff"></path>
</svg>
</picture>
<h4 class="h-c-headline h-c-headline--four highlights-module__subhead">Build a complete picture.</h4>
<p class="highlights-module__description">Understand your site and app users to better evaluate the performance of your marketing, content, products, and more.</p>
</li>
<li class="h-c-carousel__item">
<picture>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 45" alt="" role="img" aria-label="bulb icon" class="gmp-circle-icon gmp-circle-icon--yellow highlights-module__icon">
<title>bulb icon</title>
<circle class="gmp-icon--accent" cx="22.5" cy="22.5" r="22.5"></circle>
<path d="m18.74 33a1.26 1.26 0 0 0 1.26 1.21h5a1.26 1.26 0 0 0 1.26-1.21v-1.29h-7.52zm3.76-23.84a8.71 8.71 0 0 0 -8.77 8.77 8.55 8.55 0 0 0 3.76 7.14v2.93a1.26 1.26 0 0 0 1.25 1.25h7.52a1.26 1.26 0 0 0 1.25-1.25v-2.93a8.9 8.9 0 0 0 3.76-7.14 8.71 8.71 0 0 0 -8.77-8.77z" fill="#fff"></path>
</svg>
</picture>
<h4 class="h-c-headline h-c-headline--four highlights-module__subhead">Get insights only Google can give.</h4>
<p class="highlights-module__description">Access Google’s unique insights and machine learning capabilities to help get the most out of your data.</p>
</li>
<li class="h-c-carousel__item">
<picture>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 45" alt="" role="img" aria-label="restart icon" class="gmp-circle-icon gmp-circle-icon--yellow highlights-module__icon">
<title>restart icon</title>
<circle class="gmp-icon--accent" cx="22.5" cy="22.5" r="22.5"></circle>
<path d="m22.5 14.22v4l5.36-5.36-5.36-5.34v4a10.7 10.7 0 0 0 -9.06 16.48l2-2a7.87 7.87 0 0 1 -.94-3.75 8 8 0 0 1 8-8.03zm9.06 2.33-2 2a8 8 0 0 1 -7.06 11.75v-4l-5.36 5.36 5.36 5.34v-4a10.7 10.7 0 0 0 9.06-16.43z" fill="#fff"></path>
</svg>
</picture>
<h4 class="h-c-headline h-c-headline--four highlights-module__subhead">Connect your insights to results.</h4>
<p class="highlights-module__description">Analytics is built to work with Google’s advertising and publisher products so you can use your analytics insights to reach the right customers.</p>
</li>
<li class="h-c-carousel__item">
<picture>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 45" alt="" role="img" aria-label="checklist icon" class="gmp-circle-icon gmp-circle-icon--yellow highlights-module__icon">
<title>checklist icon</title>
<circle class="gmp-icon--accent" cx="22.5" cy="22.5" r="22.5"></circle>
<path d="m25 20h-16v2.67h16zm0-5.34h-16v2.67h16zm-16 13.34h10.68v-2.66h-10.68zm26-6 2 2-9.3 9.35-6-6 2-2 4 4z" fill="#fff"></path>
</svg>
</picture>
<h4 class="h-c-headline h-c-headline--four highlights-module__subhead">Make your data work for you.</h4>
<p class="highlights-module__description">Process and share your data quickly with an easy-to-use interface and shareable reports.</p>
</li>
</ul>
</div>
<div class="h-c-carousel__navigation ng-scope">
<ul role="tablist" class="glue-pagination-page-list ng-isolate-scope glue-o-pagination__page-list" data-glue-pagination="demo-cyclical"> <!-- ngRepeat: i in PageListCtrl.pageCollection --><li ng-repeat="i in PageListCtrl.pageCollection" data-page="1" class="glue-o-pagination__button-container glue-o-pagination__page-list-button-container ng-scope active" ng-class="{active: i == PageListCtrl.model.currentPage}" ng-show="PageListCtrl.activePageCollection[i - 1]" style=""> <!-- ngIf: PageListCtrl.getAriaControlId(i) --> <!-- ngIf: !PageListCtrl.getAriaControlId(i) --><button type="button" role="tab" class="glue-o-pagination__button glue-o-pagination__page-list-button ng-binding ng-scope" aria-selected="true" aria-label="" data-page="1" data-ng-focus="PageListCtrl.onFocus()" data-ng-blur="PageListCtrl.onBlur($event)" data-ng-click="PageListCtrl.setPage(i, $event)" data-ng-if="!PageListCtrl.getAriaControlId(i)"> 1</button><!-- end ngIf: !PageListCtrl.getAriaControlId(i) --> </li><!-- end ngRepeat: i in PageListCtrl.pageCollection --></ul>
</div>
</div>
<div class="highlights-module__cta highlights-module__cta--mobile">
<a data-g-event="product: analytics: overview" data-g-action="see all benefits" data-g-label="see whats in it for you" href="https://marketingplatform.google.com/about/analytics/benefits/" title="See all benefits" class="h-c-link gmp-link">See all benefits</a>
</div>
</div>
</div></div> </section>
<section class="gmp-section gmp-mb-l" style="
display: none;
">
<div class="color-bar">
<div class="h-c-page">
<div class="h-c-grid">
<div class="h-c-grid__col h-c-grid__col-l--8 h-c-grid__col-l--offset-2 h-c-grid__col--align-middle">
<div class="color-bar__icon color-bar__icon--green "></div>
<h3 class="h-c-headline h-c-headline--two color-bar__quote">
<span>Google Analytics helped us optimize our art marketplace, resulting in </span><span class="color-bar__highlight color-bar__highlight--green">400% year-over-year revenue growth</span><span> for our art business.</span></h3>
<p class="color-bar__credit">
<span class="color-bar__author">Mariam Naficy</span>,
Founder & CEO,
Minted
</p>
</div>
</div>
</div>
</div>
</section>
<section class="gmp-section gmp-mb-xl" style="
display: none;
">
<div class="two-column-tout">
<div class="h-c-page">
<div class="h-c-grid">
<div class="h-c-grid__col h-c-grid__col-xl--offset-1 h-c-grid__col-l--6 h-c-grid__col-xl--5 h-c-grid__col--align-middle two-column-tout__content">
<h3 class="h-c-headline h-c-headline--one">Dive into the details.</h3>
<p class="h-u-mb-std two-column-tout__description">Get the most out of your data with features like analytics intelligence, detailed reporting, and so much more.</p>
<a data-g-event="product: analytics: overview" data-g-action="see all features" data-g-label="dive into the details" href="https://marketingplatform.google.com/about/analytics/features/" title="See all features" class="h-c-link h-c-link--internal gmp-link">See all features</a>
</div>
<div class="h-c-grid__col h-c-grid__col-l--6 h-c-grid__col--align-middle">
<div class="two-column-tout__image two-column-tout__image--right">
<picture>
<source media="(max-width: 767px)" srcset="static/images/gmp/analytics-smb-feature-tout-mobile.jpg 1x, static/images/gmp/analytics-smb-feature-tout-mobile_2x.jpg 2x">
<source media="(min-width: 768px)" srcset="static/images/gmp/analytics-smb-feature-tout.jpg 1x, static/images/gmp/analytics-smb-feature-tout_2x.jpg 2x">
<img src="./Prototype of Lexipol Unified Menu_files/analytics-smb-feature-tout.jpg" alt="Dive into the details." class="gmp-no-grab ">
</picture>
</div>
</div>
</div>
</div>
</div> </section>
<section class="gmp-section gmp-mb-l" style="
display: none;
">
<div class="highlights-module">
<div class="h-c-page">
<div class="h-c-grid highlights-module__sticky-wrapper">
<div class="h-c-grid__col h-c-grid__col-l--6">
<div class="highlights-module__sticky-el">
<img alt="Designed to work together." srcset="static/images/gmp/analytics-smb-integration.jpg 1x, static/images/gmp/analytics-smb-integration_2x.jpg 2x" src="./Prototype of Lexipol Unified Menu_files/analytics-smb-integration.jpg" class="gmp-no-grab highlights-module__image-desktop">
</div>
</div>
<div class="h-c-grid__col h-c-grid__col-l--5 highlights-module__content">
<h3 class="h-c-headline h-c-headline--one h-has-bottom-margin">Designed to work together.</h3>
<p>Easily access data from other Google solutions while working in Analytics, for a seamless workflow that saves you time and increases efficiency.</p>
<picture>
<source media="(max-width: 767px)" srcset="static/images/gmp/analytics-smb-integration-mobile.jpg 1x, static/images/gmp/analytics-smb-integration-mobile_2x.jpg 2x">
<source media="(min-width: 768px)" srcset="static/images/gmp/analytics-smb-integration.jpg 1x, static/images/gmp/analytics-smb-integration_2x.jpg 2x">
<img src="./Prototype of Lexipol Unified Menu_files/analytics-smb-integration.jpg" alt="Designed to work together." class="gmp-no-grab highlights-module__image-mobile">
</picture>
<div class="highlights-module__listing">
<ul class="highlights-module__highlights">
<li class="highlights-module__highlight">
<picture>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 45" alt="" role="img" aria-label="googleads icon" class="gmp-circle-icon gmp-circle-icon--white highlights-module__icon">
<title>googleads icon</title>
<circle class="gmp-icon--accent" cx="22.5" cy="22.5" r="22.5"></circle>
<rect width="45" height="45" fill="#ffffff"></rect><g transform="matrix(1.18, 0, 0, 1.18, -10, 1)"><path d="m9.28 16.03h17.59v8.8h-17.59z" fill="#fbbc04" transform="matrix(.5 -.8660254 .8660254 .5 -8.65 25.87)"></path><path d="m35.09 25.85-8.8-15.24a4.4 4.4 0 1 0 -7.62 4.39l8.8 15.24a4.4 4.4 0 1 0 7.62-4.4z" fill="#4285f4"></path><circle cx="13.68" cy="28.05" fill="#34a853" r="4.4"></circle></g>
</svg>
</picture>
<h4 class="h-c-headline h-c-headline--four h-has-bottom-margin">Google Ads</h4>
<p>Gain deeper insights into how users from your Google Ads campaigns engage with your site.</p>
</li>
<li class="highlights-module__highlight">
<picture>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 45" alt="" role="img" aria-label="data-studio icon" class="gmp-circle-icon gmp-circle-icon--white highlights-module__icon">
<title>data-studio icon</title>
<circle class="gmp-icon--accent" cx="22.5" cy="22.5" r="22.5"></circle>
<rect width="45" height="45" fill="#ffffff"></rect><g transform="matrix(1.18, 0, 0, 1.18, -10, 1)"><path d="m31.78 28h-9.35a3.29 3.29 0 0 0 -3.53 3.27 3.25 3.25 0 0 0 3.53 3.27h9.35z" fill="#669df6"></path><ellipse cx="31.78" cy="31.24" fill="#004B87" rx="3.22" ry="3.27"></ellipse><path d="m22.13 19.27h-9.35a3.29 3.29 0 0 0 -3.53 3.27 3.25 3.25 0 0 0 3.53 3.27h9.35z" fill="#669df6"></path><ellipse cx="22.13" cy="22.54" fill="#004B87" rx="3.22" ry="3.27"></ellipse><path d="m31.78 10.57h-9.35a3.29 3.29 0 0 0 -3.53 3.27 3.25 3.25 0 0 0 3.53 3.27h9.35z" fill="#669df6"></path><ellipse cx="31.78" cy="13.84" fill="#004B87" rx="3.22" ry="3.27"></ellipse></g>
</svg>
</picture>
<h4 class="h-c-headline h-c-headline--four h-has-bottom-margin">Data Studio</h4>
<p>Connect Analytics with Data Studio to easily build performance dashboards and create customized reports.</p>
</li>
<li class="highlights-module__highlight">
<picture>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 45" alt="" role="img" aria-label="optimize icon" class="gmp-circle-icon gmp-circle-icon--white highlights-module__icon">
<title>optimize icon</title>
<circle class="gmp-icon--accent" cx="22.5" cy="22.5" r="22.5"></circle>
<rect width="45" height="45" fill="#ffffff"></rect><g transform="matrix(1.18, 0, 0, 1.18, -10, 1)"><path d="m26.47 22.89a3.61 3.61 0 0 0 -3.65-3.52h-9.4v7h6.09v5.92a3.46 3.46 0 0 0 3.26 3.71h.13a3.61 3.61 0 0 0 3.58-3.65z" fill="#b366f6"></path><circle cx="13.37" cy="22.93" fill="#8430ce" r="3.56"></circle><path d="m35.15 13.45a3.58 3.58 0 0 0 -3.58-3.54h-9.57a3.58 3.58 0 0 0 0 7.09h6.16v5.92a3.52 3.52 0 0 0 7 .29q0-.14 0-.29z" fill="#c58af8"></path></g>
</svg>
</picture>
<h4 class="h-c-headline h-c-headline--four h-has-bottom-margin">Optimize</h4>