-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcontact.html
More file actions
134 lines (115 loc) · 5.46 KB
/
contact.html
File metadata and controls
134 lines (115 loc) · 5.46 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>My Example Project</title>
<link rel="stylesheet" href="assets/uswds-1.6.10/css/uswds.css">
</head>
<body>
<a class="usa-skipnav" href="#main-content">Skip to main content</a>
<section class="usa-banner">
<div class="usa-accordion">
<header class="usa-banner-header">
<div class="usa-grid usa-banner-inner">
<img src="/assets/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="/assets/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 often end in .gov or .mil. Before sharing sensitive information,
make sure you’re on a federal government site.
</p>
</div>
</div>
<div class="usa-banner-guidance-ssl usa-width-one-half">
<img class="usa-banner-icon usa-media_block-img" src="/assets/img/icon-https.svg" alt="Https">
<div class="usa-media_block-body">
<p>
<strong>The site is secure.</strong>
<br>
The <strong>https://</strong> ensures that you are connecting to the official website and
that any information you provide is encrypted and transmitted securely.
</p>
</div>
</div>
</div>
</div>
</section>
<header class="usa-header usa-header-basic" role="banner">
<div class="usa-nav-container">
<div class="usa-navbar">
<div class="usa-logo" id="basic-logo">
<em class="usa-logo-text">
<a href="index.html" title="Home" aria-label="Home">
Office of Evidence and Analysis
</a>
</em>
</div>
<button class="usa-menu-btn">Menu</button>
</div>
<nav role="navigation" class="usa-nav">
<button class="usa-nav-close">
<img src="/assets/img/close.svg" alt="close">
</button>
<ul class="usa-nav-primary usa-accordion">
<li><button class="usa-accordion-button usa-nav-link" aria-expanded="false"
aria-controls="extended-nav-section-one">
<span>Our Service Offerings</span>
</b utton>
<ul id="extended-nav-section-one" class="usa-nav-submenu">
<li>
<a href="dataCollections.html">Data Collections</a>
</li>
<li>
<a href="dashboards.html">Dashboards</a>
</li>
<li>
<a href="dataGap.html">Data Gap Assessments</a>
</li>
<li>
<a href="policyAnalysis.html">Policy Analysis</a>
</li>
</ul>
</li>
<li><a class="usa-nav-link" href="team.html">
<span>About Us</span>
</a>
</li>
<li><a class="usa-nav-link" href="contact.html">
<span>Contact</span>
</a>
</li>
</ul>
<form class="usa-search usa-search-small ">
<div role="search">
<label class="usa-sr-only" for="basic-search-field-small">Search small</label>
<input id="basic-search-field-small" type="search" name="search">
<button type="submit">
<span class="usa-sr-only">Search</span>
</button>
</div>
</form>
</nav>
</div>
</header>
<div class="usa-overlay"></div>
<main class="usa-grid usa-section usa-content usa-layout-docs" id="main-content">
<div class="usa-width-three-fourths usa-layout-docs-main_content">
<h3>Customer Satisfaction Survey Mailbox:</h3>
<p href="mailto:missionsupportcss@research.gsa.gov">missionsupportcss@research.gsa.gov</p>
</div>
</main>
<script src="assets/uswds-1.6.10/js/uswds.js"></script>
</body>
</html>