-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathindex.html
714 lines (667 loc) · 30.5 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
<!doctype html>
<html lang="en">
<head>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home | Performance.gov</title>
<!-- Update the link path to where your stylesheet file is located. For example: /path/to/yourcss/lib/uswds.min.css -->
<!-- Performance.gov 2018 -->
<link rel="stylesheet" href="css/uswds.css">
<!-- We participate in the US government's analytics program. See the data at analytics.usa.gov. -->
<script async type="text/javascript" src="https://dap.digitalgov.gov/Universal-Federated-Analytics-Min.js?agency=GSA" id="_fed_an_ua_tag"></script>
<style>
/*.usa-accordion-button- {
background-color: transparent;
border: 0;
border-radius: 0;
font-weight: 400;
margin: 0;
outline: 0;
padding: 0;
text-align: left;
-webkit-font-smoothing: auto;
background-color: #f1f1f1;
background-image: url("../img/minus.png");
background-image: url("../img/minus.svg");
background-position: right 3rem center;
background-repeat: no-repeat;
background-size: 9px;
color: #212121;
cursor: pointer;
display: inline-block;
font-family: "Source Sans Pro", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
font-weight: 700;
margin: 0;
padding: 1.5rem 5.5rem 1.5rem 3rem;
width: 100%;
}*/
.usa-accordion-button {
width: 400px;
line-height: 10px;
}
</style>
</head>
<body class="layout-demo">
<a class="usa-skipnav" href="#main-content">Skip to main content</a>
<header class="usa-header usa-header-extended" role="banner">
<!-- Gov banner BEGIN -->
<div class="usa-banner">
<div class="usa-accordion">
<header class="usa-banner-header">
<div class="usa-grid usa-banner-inner">
<img src="img/favicons/favicon-57.png" alt="U.S. flag">
<p>An official website of the United States government</p>
<button class="usa-accordion-button usa-banner-button"
aria-expanded="false" aria-controls="gov-banner">
<span class="usa-banner-button-text">Here's how you know</span>
</button>
</div>
</header>
<div class="usa-banner-content usa-grid usa-accordion-content" id="gov-banner">
<div class="usa-banner-guidance-gov usa-width-one-half">
<img class="usa-banner-icon usa-media_block-img" src="img/icon-dot-gov.svg" alt="Dot gov">
<div class="usa-media_block-body">
<p>
<strong>The .gov means it’s official.</strong>
<br>
Federal government websites always use a .gov or .mil domain. Before sharing sensitive information online, make sure you’re on a .gov or .mil site by inspecting your browser’s address (or “location”) bar.
</p>
</div>
</div>
<div class="usa-banner-guidance-ssl usa-width-one-half">
<img class="usa-banner-icon usa-media_block-img" src="img/icon-https.svg" alt="SSL">
<div class="usa-media_block-body">
<p>This site is also protected by an SSL (Secure Sockets Layer) certificate that’s been signed by the U.S. government. The <strong>https://</strong> means all transmitted data is encrypted — in other words, any information or browsing history that you provide is transmitted securely.</p>
</div>
</div>
</div>
</div>
</div>
<!-- Gov banner END -->
<div class="usa-navbar">
<button class="usa-menu-btn">Menu</button>
<div class="usa-logo" id="logo">
<em class="usa-logo-text">
<a href="#" accesskey="1" title="Home" aria-label="Home">Performance.gov</a>
</em>
</div>
</div>
<nav role="navigation" class="usa-nav">
<div class="usa-nav-inner">
<button class="usa-nav-close">
<img src="img/close.svg" alt="close">
</button>
<ul class="usa-nav-primary usa-accordion">
<!-- <li>
<li>
<button class="usa-accordion-button usa-nav-link" aria-expanded="false" aria-controls="megamenu-1"
<span>PMA</span>
</button>
<ul class="usa-nav-submenu usa-megamenu usa-grid-full" id="megamenu-1">
<li class="usa-megamenu-col">
<ul>
<li>
<a href="PMA/PMA_option_2.html"><strong>Overview</strong></a>
</li>
<li>
<a href="../PMA/CAP_modernizing_it.html">Modernizing IT</a>
</li>
<li>
<a href="../PMA/CAP_customer_experience.html">Customer Experience</a>
</li>
<li>
<a href="../PMA/CAP_21st_century_workforce.html">21st Century Workforce</a>
</li>
<li>
<a href="../PMA/CAP_shifting_from_low_value_to_high_value_work.html">Shifting from Low-Value to High-Value Work</a>
</li>
</ul>
</li>
<li class="usa-megamenu-col">
<ul>
<li>
<a href="../PMA/CAP_improving_administrative_services_across_government.html">Improving Administrative Services Across Government</a>
</li>
<li>
<a href="../PMA/CAP_category_management_solutions.html">Category Management Solutions</a>
</li>
<li>
<a href="../PMA/CAP_results_oriented_accountability_for_grants.html">Results-Oriented Accountability for Grants</a>
</li>
<li>
<a href="../PMA/CAP_prevent_improper_payments.html">Prevent Improper Payments</a>
</li>
<li>
<a href="../PMA/CAP_technology_business_management.html">Technology Business Management</a>
</li>
</ul>
</li>
<li class="usa-megamenu-col">
<ul>
<li>
<a href="../PMA/CAP_improve_management_of_major_acquisitions.html">Improve Management of Major Acquisitions</a>
</li>
<li>
<a href="../PMA/CAP_infrastructure_permitting.html">Infrastructure Permitting</a>
</li>
<li>
<a href="../PMA/CAP_suitability_and_security_clearance_reform.html">Suitability and Security Clearance Reform</a>
</li>
<li>
<a href="../PMA/CAP_lab_to_market.html">Lab-to-Market</a>
</li>
<li>
<a href="../PMA/CAP_veterans_mental_health.html">Veterans Mental Health</a>
</li>
</li>
</ul>
</li>
</ul> -->
<!-- <li>
<button class="usa-accordion-button usa-nav-link" aria-expanded="false" aria-controls="sidenav-2">
<span>PMA</span>
</button>
<ul id="sidenav-2" class="usa-nav-submenu">
<li>
<a href="PMA/PMA.html">Overview</a>
</li>
</ul>
</li> -->
<li>
<button class="usa-accordion-button usa-nav-link" aria-expanded="false" aria-controls="megamenu-2"
<span>Agencies</span>
</button>
<ul class="usa-nav-submenu usa-megamenu usa-grid-full" id="megamenu-2">
<li class="usa-megamenu-col">
<ul>
<li>
<a href="agriculture/agriculture.html">Department of Agriculture</a>
</li>
<li>
<a href="commerce/commerce.html">Department of Commerce</a>
</li>
<li>
<a href="defense/defense.html">Department of Defense</a>
</li>
<li>
<a href="education/education.html">Department of Education</a>
</li>
<li>
<a href="energy/energy.html">Department of Energy</a>
</li>
<li>
<a href="health_and_human_services/health_and_human_services.html">Department of Health and Human Services</a>
</li>
</ul>
</li>
<li class="usa-megamenu-col">
<ul>
<li>
<a href="homeland_security/homeland_security.html">Department of Homeland Security</a>
</li>
<li>
<a href="housing_and_urban_development/housing_and_urban_development.html">Department of Housing and Urban Development</a>
</li>
<li>
<a href="interior/interior.html">Department of the Interior</a>
</li>
<li>
<a href="justice/justice.html">Department of Justice</a>
</li>
<li>
<a href="labor/labor.html">Department of Labor</a>
</li>
</ul>
</li>
<li class="usa-megamenu-col">
<ul>
<li>
<a href="state/state.html">Department of State</a>
</li>
<li>
<a href="transportation/transportation.html">Department of Transportation</a>
</li>
<li>
<a href="treasury/treasury.html">Department of the Treasury</a>
</li>
<li>
<a href="veterans_affairs/veterans_affairs.html">Department of Veterans Affairs</a>
</li>
<li>
<a href="EPA/EPA.html">Environmental Protection Agency</a>
</li>
<li>
<a href="GSA/GSA.html">General Services Administration</a>
</li>
</ul>
</li>
<li class="usa-megamenu-col">
<ul>
<li>
<a href="NASA/NASA.html">National Aeronautics and Space Administration</a>
</li>
<li>
<a href="NSF/NSF.html">National Science Foundation</a>
</li>
<li>
<a href="OPM/OPM.html">Office of Personnel Management</a>
</li>
<li>
<a href="SBA/SBA.html">Small Business Administration</a>
</li>
<li>
<a href="SSA/SSA.html">Social Security Administration</a>
</li>
<li>
<a href="state/state.html">United States Agency for International Development</a>
</li>
</ul>
</li>
</ul>
<li>
<button class="usa-accordion-button usa-nav-link" aria-expanded="false" aria-controls="sidenav-3">
<span>About</span>
</button>
<ul id="sidenav-3" class="usa-nav-submenu">
<li>
<a href="about/getstarted.html">Get Started</a>
</li>
<li>
<a href="about/news.html">News</a>
</li>
<li>
<a href="about/About P.gov.html">About Performance.gov</a>
</li>
<li>
<a href="about/FAQ.html">FAQs</a>
</li>
<li>
<a href="about/framework_about.html">Performance Framework </a>
</li>
</ul>
</li> </ul>
<div class="usa-nav-secondary">
<form class="usa-search usa-search-small" action="https://search.usa.gov/search" accept-charset="UTF-8"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /></div>
<div role="search">
<label class="usa-sr-only" for="search-field-small">Search small</label>
<input id="affiliate" name="affiliate" type="hidden" value="performance.gov" />
<input id="search-field-small" type="search" name="query" autocomplete="off" class="usagov-search-autocomplete" id="query" name="query" type="text" >
<button type="submit">
<span class="usa-sr-only">Search</span>
</button>
</div>
</form>
</li>
</ul>
</div>
</div>
</nav>
</header>
</header>
<div class="usa-overlay"></div>
<main id="main-content">
<section class="usa-hero">
<div class="usa-grid">
<div class="usa-hero-callout usa-section-dark">
<h2><span class="usa-hero-callout-alt">What's New?</span>Agencies Establish Revised Strategic Plans and Agency Priority Goals with the President's FY 2019 Budget</h2>
<!-- <a class="usa-hero-link" href="#">Link to and example APG</a> -->
<a class="usa-button usa-button-big usa-button-secondary" href="about/news.html">Read the latest news here</a>
</div>
</div>
</section>
<section class="usa-grid usa-section">
<div class="usa-width-one-third">
<h2>Welcome to Performance.gov</h2>
</div>
<div class="usa-width-two-thirds">
<p><font size="+1">Performance.gov is a window into Federal agencies’ efforts to deliver a smarter, leaner, and more effective government. The site informs the public of the progress underway to cut waste, streamline government, and improve performance. <a href="about/getstarted.html">Learn more to get started.</a></font></p>
<!-- <p>Use the right side of the grid to explain the tagline a bit more. What are your goals? How do you do your work? Write in the present tense, and stay brief here. People who are interested can find details on internal pages.</p> -->
</div>
</section>
<section class="usa-section usa-section-dark usa-graphic_list">
<div class="usa-grid usa-graphic_list-row">
<div class="usa-width-one-half usa-media_block">
<a href="PMA/PMA.html"><img class="usa-media_block-img" src="img/homepage_images/436043_original.png" alt="Alt text"></a>
<div class="usa-media_block-body">
<a href="PMA/PMA.html" style="text-decoration: none"><h3>The President's Management Agenda</h3></a>
<p>The President's Management Agenda establishes and defines the Administration's key management reform priorities and initiatives. This March, the Administration will release the President's Management Agenda to set forth a long-term vision for an effective Government that works on behalf of the American people</p>
</div>
</div>
<div class="usa-width-one-half usa-media_block">
<a href="about/framework_about.html"><img class="usa-media_block-img" src="img/homepage_images/target_icon.png" alt="Alt text"></a>
<div class="usa-media_block-body">
<a href="about/framework_about.html" style="text-decoration: none"> <h3>Learn about the Performance Framework</h3></a>
<p>Performance management in the public sector is an ongoing, systematic approach to improving results through evidence-based decision making, continuous organizational learning, and a focus on accountability for performance.</p>
</div>
</div>
</div>
</section>
<section class="usa-section">
<div class="usa-grid">
<p>The Federal government sets both Priority Goals – cross-agency and within agencies – that are near-term, implementation focused priorities of leadership as well as strategic objectives that are comprehensive of agencies’ missions. View these current goals and description of each below.<p>
<h2> Cross Agency Priority Goals</h2>
<p>Cross-Agency Priority (CAP) Goals are a tool used by leadership to accelerate progress on a limited number of Presidential priority areas where implementation requires active collaboration among multiple agencies.</p>
<a class="usa-button" href="framework/CAP.html" style="text-decoration: none">Click here to learn about CAP Goals</a>
</div>
<br>
<br>
<div class="usa-grid">
<h2>Agency Priority Goals</h2>
<p>Agency Priority Goals (APGs) are a performance accountability structure of the GPRA Modernization Act that provides agencies a mechanism to focus leadership priorities, set outcomes, and measure results, bringing focus to mission areas where agencies need to drive significant progress and change. Click <a href="framework/APG.html">here</a> to learn more about Agency Priority Goals or view individual APGs by selecting from the dropdown below.</p>
<a class="usa-button usa-button-disabled"> Click below to view Agency Priority Goals </a>
<ul class="usa-accordion">
<li>
<div class="usa-width-one-third"> <button class="usa-accordion-button"
aria-expanded="hidden"
aria-controls="a1">
<font size="+1"> -- select -- </font>
</button> </div></div>
<div class="usa-grid">
<div id="a1" class="usa-accordion-content">
<div class="usa-width-one-half">
<ul style="list-style: none;">
<a color=" #000000"><li>
<a href="agriculture/APG_agriculture_1.html">Department of Agriculture</a>
</li>
<li>
<a href="commerce/APG_commerce_1.html">Department of Commerce</a>
</li>
<li>
<a href="defense/APG_defense_1.html">Department of Defense</a>
</li>
<li>
<a href="education/APG_education_1.html">Department of Education</a>
</li>
<li>
<a href="energy/APG_energy_1.html">Department of Energy</a>
</li>
<!--</ul>
</div>
<div class="usa-width-one-fourth">
<ul style="list-style: none;"> -->
<li>
<a href="health_and_human_services/APG_hhs_1.html">Department of Health and Human Services</a>
</li>
<li>
<a href="homeland_security/APG_dhs_1.html">Department of Homeland Security</a>
</li>
<li>
<a href="housing_and_urban_development/APG_hud_1.html">Department of Housing and Urban Development</a>
</li>
<li>
<a href="interior/APG_interior_1.html">Department of the Interior</a>
</li>
<li>
<a href="justice/APG_justice_1.html">Department of Justice</a>
</li>
<li>
<a href="labor/APG_labor_1.html">Department of Labor</a>
</li>
<li>
<a href="state/APG_state_1.html">Department of State</a>
</li>
</ul>
</div>
<div class="usa-width-one-half">
<ul style="list-style: none;">
<li>
<a href="transportation/APG_transportation_1.html">Department of Transportation</a>
</li>
<li>
<a href="treasury/APG_treasury_1.html">Department of the Treasury</a>
</li>
<li>
<a href="veterans_affairs/APG_va_1.html">Department of Veterans Affairs</a>
</li>
<!-- </ul>
</div>
<div class="usa-width-one-fourth">
<ul style="list-style: none;">-->
<li>
<a href="EPA/APG_epa_1.html">Environmental Protection Agency</a>
</li>
<li>
<a href="GSA/APG_gsa_1.html">General Services Administration</a>
</li>
<li>
<a href="NASA/APG_nasa_1.html">National Aeronautics and Space Administration</a>
</li>
<li>
<a href="NSF/APG_nsf_1.html">National Science Foundation</a>
</li>
<li>
<a href="OPM/APG_opm_1.html">Office of Personnel Management</a>
</li>
<li>
<a href="SBA/APG_sba_1.html">Small Business Administration</a>
</li>
<li>
<a href="SSA/APG_ssa_1.html">Social Security Administration</a>
</li>
<li>
<a href="state/APG_usaid_1.html">United States Agency for International Development</a>
</li>
</ul>
</li></font>
</div>
</div>
</div>
<br>
<br>
<div class="usa-grid">
<h2>Strategic Objectives</h2>
<p>Updated and revised every four years, Strategic Objectives reflect the outcome or management impacts the agency is trying to achieve over the term of an Administration. <a href="framework/objectives.html">Click here</a> to learn more about strategic objectives, or view Agency Strategic Plans and objectives by selecting from the dropdown below.</p>
<a class="usa-button usa-button-disabled"> Click below to View Agency Strategic Plans and Objectives </a>
<ul class="usa-accordion">
<li>
<div class="usa-width-one-third"> <button class="usa-accordion-button"
aria-expanded="hidden"
aria-controls="a2">
<font size="+1"> -- select -- </font>
</button> </div></div>
<div id="a2" class="usa-accordion-content">
<div class="usa-grid">
<div class="usa-width-one-half">
<ul style="list-style: none;">
<li>
<a href="agriculture/agriculture.html">Department of Agriculture</a>
</li>
<li>
<a href="commerce/commerce.html">Department of Commerce</a>
</li>
<li>
<a href="defense/defense.html">Department of Defense</a>
</li>
<li>
<a href="education/education.html">Department of Education</a>
</li>
<li>
<a href="energy/energy.html">Department of Energy</a>
</li>
<!--</ul>
</div>
<div class="usa-width-one-fourth">
<ul style="list-style: none;"> -->
<li>
<a href="health_and_human_services/health_and_human_services.html">Department of Health and Human Services</a>
</li>
<li>
<a href="homeland_security/homeland_security.html">Department of Homeland Security</a>
</li>
<li>
<a href="housing_and_urban_development/housing_and_urban_development.html">Department of Housing and Urban Development</a>
</li>
<li>
<a href="interior/interior.html">Department of the Interior</a>
</li>
<li>
<a href="justice/justice.html">Department of Justice</a>
</li>
<li>
<a href="labor/labor.html">Department of Labor</a>
</li>
<li>
<a href="state/state.html">Department of State</a>
</li>
</ul>
</div>
<div class="usa-width-one-half">
<ul style="list-style: none;">
<li>
<a href="transportation/transportation.html">Department of Transportation</a>
</li>
<li>
<a href="treasury/treasury.html">Department of the Treasury</a>
</li>
<li>
<a href="veterans_affairs/veterans_affairs.html">Department of Veterans Affairs</a>
</li>
<!-- </ul>
</div>
<div class="usa-width-one-fourth">
<ul style="list-style: none;">-->
<li>
<a href="EPA/EPA.html">Environmental Protection Agency</a>
</li>
<li>
<a href="GSA/GSA.html">General Services Administration</a>
</li>
<li>
<a href="NASA/NASA.html">National Aeronautics and Space Administration</a>
</li>
<li>
<a href="NSF/NSF.html">National Science Foundation</a>
</li>
<li>
<a href="OPM/OPM.html">Office of Personnel Management</a>
</li>
<li>
<a href="SBA/SBA.html">Small Business Administration</a>
</li>
<li>
<a href="SSA/SSA.html">Social Security Administration</a>
</li>
<li>
<a href="state/usaid.html">United States Agency for International Development</a>
</li>
</ul>
</div>
</li>
</div>
</section>
</main>
<footer class="usa-footer usa-footer-big" role="contentinfo">
<div class="usa-grid usa-footer-return-to-top">
<a href="#">Return to top</a>
</div>
<div class="usa-footer-primary-section">
<div class="usa-grid-full">
<nav class="usa-footer-nav usa-width-one-whole">
<ul class="usa-unstyled-list usa-width-one-sixth usa-footer-primary-content">
<li class="usa-footer-primary-link">
<h4>Initiatives</h4>
</li>
<div class="one-column">
<li><a href="https://github.com/usdoj/foia.gov">FOIA Portal</a></li>
<li><a href="https://www.permits.performance.gov/">Permitting</a></li>
<li><a href="elimination/elimination_of_unnecessary_agency_reports.html">Elimination of Unnecessary Agency Reports</a></li>
<li><a href="https://opportunity.census.gov/">The Opportunity Project </a></li>
<li><a href="https://www.sustainability.gov/">Sustainability.gov </a></li>
</div>
</ul>
<ul class="usa-unstyled-list usa-width-one-sixth usa-footer-primary-content">
<li class="usa-footer-primary-link">
<h4>Policy</h4>
</li>
<div class="one-column">
<li><a href="https://www.whitehouse.gov/">WhiteHouse.gov</a></li>
<li><a href="https://www.whitehouse.gov/omb/">OMB</a></li>
<li><a href="https://www.gpo.gov/fdsys/pkg/PLAW-111publ352/pdf/PLAW-111publ352.pdf">GPRAMA Legislation</a></li>
<li><a href="https://www.whitehouse.gov/sites/whitehouse.gov/files/omb/assets/a11_current_year/a11_2017.pdf">OMB Policy Guidance </a></li>
<li><a href="https://www.regulations.gov/">Regulations.gov</a></li>
</div>
</ul>
<ul class="usa-unstyled-list usa-width-one-sixth usa-footer-primary-content">
<li class="usa-footer-primary-link">
<h4>Partners</h4>
</li>
<div class="one-column">
<li><a href="https://pic.gov/">PIC.gov</a></li>
<li><a href="https://www.usaspending.gov/">USASpending.gov</a></li>
<li><a href="https://www.data.gov/">Data.gov</a></li>
<li><a href="https://18f.gsa.gov/">18F</a></li>
</div>
</ul>
<ul class="usa-unstyled-list usa-width-one-sixth usa-footer-primary-content">
<li class="usa-footer-primary-link">
<h4>Technology</h4>
</li>
<div class="one-column">
<li><a href="https://code.gov/">Code.gov</a></li>
<li><a href="https://www.digitalgov.gov/">Digitalgov.gov</a></li>
<li><a href="https://www.digitalgov.gov/services/dap/">Digital Analytics Program</a></li>
<li><a href="https://labs.data.gov/dashboard/offices">Open Data Dashboard</a></li>
<li><a href="https://www.usds.gov/">USDS.gov</a></li>
</div>
</ul>
<ul class="usa-unstyled-list usa-width-one-third usa-footer-primary-content">
<li class="usa-footer-primary-link">
<h4>Other Information and Services</h4>
</li>
<div class="two-columns">
<li><a href="https://www.trade.gov/">Trade.gov</a></li>
<li><a href="https://www.export.gov/welcome">Export.gov</a></li>
<li><a href="https://www.itdashboard.gov/">IT Dashboard</a></li>
<li><a href="https://paymentaccuracy.gov/">PaymentAccuracy.gov</a></li>
<li><a href="https://www.acquisition.gov/">Acquisition.gov</a></li>
<li><a href="https://www.healthypeople.gov/">HealthyPeople.gov</a></li>
<li><a href="https://www.usa.gov/">USA.gov</a></li>
<li><a href="https://www.disasterassistance.gov/">DisasterAssistance.gov</a></li>
<li><a href="https://www.consumer.gov/">Consumer.gov</a></li>
<li><a href="https://www.benefits.gov/">Benefits.gov</a></li>
<li><a href="https://www.challenge.gov/list/">Challenge.gov</a></li>
<li><a href="https://gobierno.usa.gov/">Gobierno.usa.gov</a></li>
</div>
</nav>
<!--
<div class="usa-sign_up-block usa-width-one-third">
<h3 class="usa-sign_up-header">Subscribe for updates</h3>
<label class="" for="email" id="">Your email address</label>
<input id="email" name="email" type="email">
<button type="submit">Sign up</button>
</div> -->
</div>
</div>
<div class="usa-footer-secondary_section usa-footer-big-secondary-section">
<div class="usa-grid">
<div class="usa-footer-logo usa-width-one-half">
<img class="usa-footer-logo-img" src="img/homepage_images/logo-gsa.png" alt="Logo image"> <img class="usa-footer-logo-img" src="img/homepage_images/logo-omb.png" alt="Logo image">
<h3 class="usa-footer-logo-heading">General Services Administration & the Office of Management and Budget</h3>
</div>
<div class="usa-footer-contact-links usa-width-one-half">
<!-- <a class="usa-link-facebook" href="javascript:void(0);">
<span>Facebook</span>
</a>
<a class="usa-link-twitter" href="javascript:void(0);">
<span>Twitter</span>
</a>
<a class="usa-link-youtube" href="javascript:void(0);">
<span>YouTube</span>
</a>
<a class="usa-link-rss" href="javascript:void(0);">
<span>RSS</span>
</a> -->
<address>
<h3 class="usa-footer-contact-heading">Contact Us</h3>
<a href="mailto:[email protected]">[email protected]</a>
<p>Content is updated every 3 months; last on February 12, 2018</p>
</address>
</div>
</div>
</div>
</footer>
<!-- Update the link path to where your JavaScript file is located. For example: /path/to/yourjs/lib/uswds.min.js -->
<script src="js/uswds.min.js"></script>
</body>
</html>