@cdc/core 4.25.11 → 4.26.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (147) hide show
  1. package/.claude/agents/qa-test-developer.md +126 -0
  2. package/CLAUDE.local.md +67 -0
  3. package/_stories/Gallery.Charts.stories.tsx +300 -0
  4. package/_stories/Gallery.DataBite.stories.tsx +79 -0
  5. package/_stories/Gallery.Maps.stories.tsx +239 -0
  6. package/_stories/Gallery.WaffleChart.stories.tsx +187 -0
  7. package/_stories/PageART.stories.tsx +193 -0
  8. package/_stories/PageBRFSS.stories.tsx +294 -0
  9. package/_stories/PageCancerRegistries.stories.tsx +199 -0
  10. package/_stories/PageEasternEquineEncephalitis.stories.tsx +216 -0
  11. package/_stories/PageExcessiveAlcoholUse.stories.tsx +201 -0
  12. package/_stories/PageMaternalMortality.stories.tsx +193 -0
  13. package/_stories/PageOralHealth.stories.tsx +201 -0
  14. package/_stories/PageRespiratory.stories.tsx +332 -0
  15. package/_stories/PageSmokingTobacco.stories.tsx +200 -0
  16. package/_stories/PageStateDiabetesProfiles.stories.tsx +201 -0
  17. package/_stories/PageWastewater.stories.tsx +477 -0
  18. package/_stories/VegaImport.stories.tsx +401 -0
  19. package/_stories/vega-fixtures/bars-with-line.json +444 -0
  20. package/_stories/vega-fixtures/bars.json +58 -0
  21. package/_stories/vega-fixtures/combo-bar-rolling-mean.json +88 -0
  22. package/_stories/vega-fixtures/combo.json +68 -0
  23. package/_stories/vega-fixtures/grouped-horizontal-bars.json +83 -0
  24. package/_stories/vega-fixtures/grouped-horizontal-bars2.json +231 -0
  25. package/_stories/vega-fixtures/horizontal-bar.json +427 -0
  26. package/_stories/vega-fixtures/horizontal-bars-with-bad-colors.json +197 -0
  27. package/_stories/vega-fixtures/horizontal-bars2.json +58 -0
  28. package/_stories/vega-fixtures/lines.json +227 -0
  29. package/_stories/vega-fixtures/measles-bars.json +348 -0
  30. package/_stories/vega-fixtures/measles-map.json +11101 -0
  31. package/_stories/vega-fixtures/measles-stacked-bars.json +2147 -0
  32. package/_stories/vega-fixtures/multi-dataset.json +255 -0
  33. package/_stories/vega-fixtures/no-data.json +14 -0
  34. package/_stories/vega-fixtures/pie-chart.json +94 -0
  35. package/_stories/vega-fixtures/repeat-spec.json +47 -0
  36. package/_stories/vega-fixtures/stacked-area.json +222 -0
  37. package/_stories/vega-fixtures/stacked-bar-with-rect.json +3412 -0
  38. package/_stories/vega-fixtures/stacked-bars-with-line.json +364 -0
  39. package/_stories/vega-fixtures/stacked-bars.json +212 -0
  40. package/_stories/vega-fixtures/stacked-horizontal-bars.json +140 -0
  41. package/_stories/vega-fixtures/warning-combo.json +59 -0
  42. package/_stories/vega-fixtures/warning-scatter-and-line.json +1182 -0
  43. package/assets/icon-chart-area.svg +1 -0
  44. package/assets/icon-chart-radar.svg +23 -0
  45. package/assets/icon-magnifying-glass.svg +5 -0
  46. package/assets/icon-warming-stripes.svg +13 -0
  47. package/assets/logo2.svg +31 -0
  48. package/components/AdvancedEditor/AdvancedEditor.tsx +4 -0
  49. package/components/AdvancedEditor/EmbedEditor.tsx +513 -0
  50. package/components/ComboBox/ComboBox.tsx +345 -0
  51. package/components/ComboBox/combobox.styles.css +185 -0
  52. package/components/ComboBox/index.ts +1 -0
  53. package/components/CustomColorsEditor/CustomColorsEditor.tsx +3 -10
  54. package/components/DataTable/DataTable.tsx +132 -58
  55. package/components/DataTable/data-table.css +216 -215
  56. package/components/DataTable/helpers/getSeriesName.ts +6 -0
  57. package/components/DataTable/helpers/mapCellMatrix.tsx +14 -6
  58. package/components/EditorPanel/ColumnsEditor.tsx +37 -19
  59. package/components/EditorPanel/DataTableEditor.tsx +51 -25
  60. package/components/EditorPanel/EditorPanel.styles.css +16 -0
  61. package/components/EditorPanel/EditorPanel.tsx +144 -0
  62. package/components/EditorPanel/EditorPanelDispatch.tsx +75 -0
  63. package/components/EditorPanel/FieldSetWrapper.tsx +66 -23
  64. package/components/EditorPanel/Inputs.tsx +33 -7
  65. package/components/EditorPanel/VizFilterEditor/NestedDropdownEditor.tsx +14 -6
  66. package/components/EditorPanel/VizFilterEditor/VizFilterEditor.tsx +240 -175
  67. package/components/EditorPanel/VizFilterEditor/components/FilterOrder.tsx +33 -29
  68. package/components/EditorPanel/sections/VisualSection.tsx +169 -0
  69. package/components/Filters/Filters.tsx +31 -5
  70. package/components/Filters/helpers/getNestedOptions.ts +2 -1
  71. package/components/Filters/helpers/handleSorting.ts +1 -1
  72. package/components/Layout/components/Sidebar/components/sidebar.styles.scss +84 -2
  73. package/components/Layout/components/Visualization/index.tsx +27 -1
  74. package/components/Layout/components/Visualization/visualizations.scss +7 -0
  75. package/components/Legend/Legend.Gradient.tsx +1 -1
  76. package/components/MediaControls.tsx +53 -28
  77. package/components/_stories/CustomColorsEditor.stories.tsx +37 -0
  78. package/components/_stories/DataTable.stories.tsx +1 -0
  79. package/components/ui/Icon.tsx +3 -1
  80. package/components/ui/Title/index.tsx +30 -2
  81. package/components/ui/Title/title.styles.css +42 -0
  82. package/data/colorPalettes.ts +18 -5
  83. package/data/mapColorPalettes.ts +10 -0
  84. package/devTemplate/dev.js +235 -0
  85. package/devTemplate/index.html +30 -0
  86. package/devTemplate/preview.html +1503 -0
  87. package/devTemplate/sidebar.css +151 -0
  88. package/dist/cove-main.css +2803 -4448
  89. package/dist/cove-main.css.map +1 -1
  90. package/generateViteConfig.js +118 -2
  91. package/helpers/DataTransform.ts +1 -5
  92. package/helpers/addValuesToFilters.ts +6 -1
  93. package/helpers/cove/date.ts +33 -1
  94. package/helpers/cove/string.ts +29 -0
  95. package/helpers/coveUpdateWorker.ts +21 -12
  96. package/helpers/embed/embedCodeGenerator.ts +80 -0
  97. package/helpers/embed/embedHelper.js +158 -0
  98. package/helpers/embed/filterUtils.ts +121 -0
  99. package/helpers/embed/index.ts +21 -0
  100. package/helpers/embed/urlValidation.ts +119 -0
  101. package/helpers/filterVizData.ts +6 -1
  102. package/helpers/getFileExtension.ts +0 -6
  103. package/helpers/getUniqueValues.ts +19 -0
  104. package/helpers/hashObj.ts +25 -0
  105. package/helpers/isRightAlignedTableValue.js +5 -0
  106. package/helpers/metrics/helpers.ts +1 -0
  107. package/helpers/metrics/types.ts +3 -0
  108. package/helpers/palettes/colorDistributions.ts +1 -1
  109. package/helpers/palettes/utils.ts +12 -12
  110. package/helpers/parseCsvWithQuotes.ts +15 -14
  111. package/helpers/pivotData.ts +2 -2
  112. package/helpers/prepareScreenshot.ts +288 -0
  113. package/helpers/queryStringUtils.ts +29 -0
  114. package/helpers/testing.ts +44 -0
  115. package/helpers/tests/DataTransform.test.ts +125 -0
  116. package/helpers/tests/date.test.ts +64 -0
  117. package/helpers/tests/prepareScreenshot.test.ts +414 -0
  118. package/helpers/tests/queryStringUtils.test.ts +381 -0
  119. package/helpers/tests/testStandaloneBuild.ts +23 -5
  120. package/helpers/useDataVizClasses.ts +0 -1
  121. package/helpers/vegaConfig.ts +1 -1
  122. package/helpers/vegaConfigImport.ts +160 -0
  123. package/helpers/ver/4.26.1.ts +80 -0
  124. package/helpers/ver/4.26.2.ts +84 -0
  125. package/helpers/ver/tests/4.26.1.test.ts +105 -0
  126. package/helpers/ver/tests/4.26.2.test.ts +298 -0
  127. package/helpers/viewports.ts +2 -0
  128. package/hooks/useDataColumns.ts +63 -0
  129. package/hooks/useFilterManagement.ts +94 -0
  130. package/hooks/useLegendSeparators.ts +26 -0
  131. package/hooks/useListManagement.ts +192 -0
  132. package/package.json +29 -33
  133. package/styles/_button-section.scss +0 -3
  134. package/styles/v2/components/editor.scss +9 -9
  135. package/styles/v2/utils/_grid.scss +8 -3
  136. package/types/Annotation.ts +10 -11
  137. package/types/Axis.ts +1 -0
  138. package/types/ForecastingSeriesKey.ts +1 -0
  139. package/types/General.ts +2 -0
  140. package/types/MarkupInclude.ts +1 -0
  141. package/types/Palette.ts +21 -0
  142. package/types/Series.ts +3 -0
  143. package/types/Table.ts +1 -0
  144. package/types/Visualization.ts +7 -0
  145. package/types/VizFilter.ts +1 -0
  146. package/LICENSE +0 -201
  147. package/_stories/StoryRenderingTests.stories.tsx +0 -164
@@ -0,0 +1,1503 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en-us" class="cdc-theme-cdc cdc-root-home cdc-page-type--content">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta http-equiv="X-UA-Compatible" content="IE=Edge" />
6
+ <meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport" />
7
+ <meta name="mobile-web-app-capable" content="yes" />
8
+ <meta name="apple-mobile-web-app-capable" content="yes" />
9
+ <style>
10
+ body {
11
+ margin: 0;
12
+ border-top: none !important;
13
+ }
14
+ /* {{PACKAGE_CSS}} */
15
+ /* {{SIDEBAR_CSS}} */
16
+ </style>
17
+
18
+ <link
19
+ rel="apple-touch-icon"
20
+ sizes="180x180"
21
+ href="https://www.cdc.gov/TemplatePackage/5.0/img/favicon/apple-touch-icon.png"
22
+ />
23
+ <link
24
+ rel="icon"
25
+ type="image/png"
26
+ sizes="32x32"
27
+ href="https://www.cdc.gov/TemplatePackage/5.0/img/favicon/favicon-32x32.png"
28
+ />
29
+ <link
30
+ rel="icon"
31
+ type="image/png"
32
+ sizes="16x16"
33
+ href="https://www.cdc.gov/TemplatePackage/5.0/img/favicon/favicon-16x16.png"
34
+ />
35
+ <link
36
+ rel="mask-icon"
37
+ href="https://www.cdc.gov/TemplatePackage/5.0/img/favicon/safari-pinned-tab.svg"
38
+ color="#0056b3"
39
+ />
40
+ <meta name="msapplication-TileColor" content="#0056b3" />
41
+ <meta name="theme-color" content="#0056b3" />
42
+ <link rel="stylesheet prefetch" href="https://www.cdc.gov/TemplatePackage/5.0/css/app.min.css?_=04929" />
43
+ <link rel="stylesheet" media="print" href="https://www.cdc.gov/TemplatePackage/5.0/css/print.min.css?_=04929" />
44
+ <link rel="manifest" href="https://www.cdc.gov/TemplatePackage/5.0/json/manifest.json" />
45
+
46
+ <meta property="cdc:template_version" content="5.0" />
47
+
48
+ <title>COVE Preview - Local Development</title>
49
+ <meta
50
+ name="description"
51
+ content="Updates on how COVID-19, Flu, and RSV may be spreading nationally and in your state"
52
+ />
53
+ <meta property="og:type" content="article" />
54
+ <meta property="og:title" content="Respiratory Virus Activity Levels" />
55
+ <meta property="og:url" content="https://www.cdc.gov/respiratory-viruses/data/activity-levels.html" />
56
+ <meta
57
+ property="og:description"
58
+ content="Updates on how COVID-19, Flu, and RSV may be spreading nationally and in your state"
59
+ />
60
+ <meta property="fb:app_id" content="205691699516606" />
61
+ <meta property="og:site_name" content="Respiratory Illnesses" />
62
+ <meta property="og:author" content="CDC" />
63
+ <meta
64
+ property="og:image"
65
+ content="https://www.cdc.gov/respiratory-viruses/media/images/2024/08/nation-thumbnail.png?_=14264"
66
+ />
67
+ <meta property="og:image:type" content="image/png" />
68
+ <meta property="og:updated_time" content="2025-12-23T15:29:15-05:00" />
69
+ <meta property="article:author" content="CDC" />
70
+ <meta name="twitter:card" content="summary" />
71
+ <meta name="twitter:title" content="Respiratory Virus Activity Levels" />
72
+ <meta name="twitter:url" content="https://www.cdc.gov/respiratory-viruses/data/activity-levels.html" />
73
+ <meta
74
+ name="twitter:description"
75
+ content="Updates on how COVID-19, Flu, and RSV may be spreading nationally and in your state"
76
+ />
77
+ <meta name="twitter:site" content="@CDCgov" />
78
+ <meta name="twitter:creator" content="@CDCgov" />
79
+ <meta
80
+ name="twitter:image:src"
81
+ content="https://www.cdc.gov/respiratory-viruses/media/images/2024/08/nation-thumbnail.png?_=14264"
82
+ />
83
+ <meta name="robots" content="index, archive" />
84
+ <meta property="cdc:first_published" content="August 16, 2024" />
85
+ <meta property="cdc:last_updated" content="December 19, 2025" />
86
+ <meta property="cdc:last_reviewed" content="December 19, 2025" />
87
+ <meta property="cdc:content_source" content="" />
88
+ <meta property="cdc:maintained_by" content="ASSOCIATE DIRECTOR FOR COMMUNICATIONS" />
89
+ <meta property="cdc:content_id" content="6532" />
90
+ <meta property="cdc:build" content="5475" />
91
+ <meta property="cdc:version" content="4.25.12" />
92
+ <meta property="cdc:page_type" content="cdc_dfe" />
93
+ <meta property="cdc:page_origin" content="dfe" />
94
+ <link rel="canonical" href="https://www.cdc.gov/respiratory-viruses/data/activity-levels.html" />
95
+ <meta property="cdc:wcms_build" content="4.25.12 - b.5475" />
96
+
97
+ <meta name="DC.date" content="2025-12-23T15:29:15Z" />
98
+ <meta name="cdc:last_published" content="2025-12-23T15:58:13Z" />
99
+ <meta property="cdc:dfe_version" content="0.3" />
100
+ <meta property="cdc:dfe_content_type" content="cdc_data_surveillance" />
101
+ <meta property="cdc:dfe_content_type_version" content="1.4.2" />
102
+ </head>
103
+ <body class="no-js cdc-post-type--cdc-dfe cdc-dfe-cdc_data_surveillance">
104
+ <script>
105
+ if (new URLSearchParams(location.search).get('sidebar') !== 'false') document.body.style.marginLeft = '240px'
106
+ </script>
107
+ <div id="dev-sidebar-root"></div>
108
+ <div id="skipmenu">
109
+ <a class="usa-skipnav" href="#content">Skip directly to site content</a>
110
+ <a class="usa-skipnav" href="#cdc-search">Skip directly to search</a>
111
+ </div>
112
+
113
+ <div class="cdc-page-banner container noindex">
114
+ <div class="cdc-site-gov-notice noindex noprint" aria-label="Official website of the United States government">
115
+ <div class="cdc-page-offset">
116
+ <div class="cdc-site-gov-notice__header">
117
+ <div>
118
+ <img
119
+ aria-hidden="true"
120
+ class="usa-banner__header-flag"
121
+ src="https://www.cdc.gov/TemplatePackage/5.0/img/uswds/us_flag_small.png"
122
+ alt=""
123
+ width="16"
124
+ height="11"
125
+ />
126
+ <span>An official website of the United States government</span>
127
+ </div>
128
+ <span>
129
+ <a
130
+ data-bs-toggle="collapse"
131
+ href="#gov-notice"
132
+ role="button"
133
+ aria-expanded="false"
134
+ aria-controls="gov-notice"
135
+ >
136
+ Here's how you know
137
+ <span class="cdc-fa-angle-down" aria-hidden="true"></span>
138
+ </a>
139
+ </span>
140
+ </div>
141
+ <div class="collapse" id="gov-notice" aria-hidden="true">
142
+ <div class="row">
143
+ <div class="col-12 col-lg-6">
144
+ <img
145
+ src="https://www.cdc.gov/TemplatePackage/5.0/img/uswds/icon-dot-gov.svg"
146
+ alt=""
147
+ aria-hidden="true"
148
+ />
149
+ <div>
150
+ <b>Official websites use .gov</b>
151
+ <p>A <b>.gov</b> website belongs to an official government organization in the United States.</p>
152
+ </div>
153
+ </div>
154
+ <div class="col-12 col-lg-6">
155
+ <img src="https://www.cdc.gov/TemplatePackage/5.0/img/uswds/icon-https.svg" alt="" aria-hidden="true" />
156
+ <div>
157
+ <strong>Secure .gov websites use HTTPS</strong>
158
+ <p>
159
+ A <strong>lock</strong> ( <i class="cdc-icon-lock-01" aria-hidden="true"></i> ) or
160
+ <strong>https://</strong> means you've safely connected to the .gov website. Share sensitive
161
+ information only on official, secure websites.
162
+ </p>
163
+ </div>
164
+ </div>
165
+ </div>
166
+ </div>
167
+ </div>
168
+ </div>
169
+ <div data-cdc-site-alert></div>
170
+ <script src="https://www.cdc.gov/TemplatePackage/5.0/js/modules/banner.js"></script>
171
+ </div>
172
+ <header class="container cdc-header noindex" role="banner">
173
+ <!-- logo, menu, search -->
174
+ <div class="cdc-header__desktop">
175
+ <div class="cdc-page-offset">
176
+ <div class="cdc-header__cdc-logo">
177
+ <a href="https://www.cdc.gov">
178
+ <img
179
+ src="https://www.cdc.gov/TemplatePackage/5.0/img/logo/logo-notext.svg"
180
+ alt="Centers for Disease Control and Prevention. CDC twenty four seven. Saving Lives, Protecting People"
181
+ />
182
+ </a>
183
+ </div>
184
+ <div class="cdc-header__body">
185
+ <div class="cdc-header__title">
186
+ <a class="cdc-header__title-link" href="/respiratory-viruses/index.html"> Respiratory Illnesses </a>
187
+ </div>
188
+ <div class="cdc-header__components">
189
+ <!-- Must Have At Least 3 Pages in Audience or Multiple Audience -->
190
+ <div class="cdc-header__menu">
191
+ <button class="btn btn-outline-white btn-arrow-down btn-fancy" id="megaButton">
192
+ Explore This Topic
193
+ </button>
194
+ </div>
195
+ <form action="https://search.cdc.gov/search/" method="GET" class="cdc-header__search" role="search">
196
+ <button id="cdc-search__toggle" aria-controls="cdc-header__search-inner" type="button">Search</button>
197
+
198
+ <div
199
+ id="cdc-header__search-inner"
200
+ class="input-group cdc-header__search__group"
201
+ aria-labelledby="cdc-search__toggle"
202
+ >
203
+ <label class="visually-hidden" for="cdc-search__input">Search</label>
204
+ <input
205
+ id="cdc-search__input"
206
+ class="form-control"
207
+ data-search-input
208
+ autocomplete="off"
209
+ type="search"
210
+ name="query"
211
+ maxlength="300"
212
+ placeholder="Search"
213
+ />
214
+
215
+ <button id="cdc-search__clear" class="cdc-header__search-clear btn" type="button">
216
+ <span class="cdc-header__search-icon cdc-fa-xmark" aria-hidden="true"></span>
217
+ <span class="visually-hidden">Clear</span>
218
+ </button>
219
+
220
+ <button id="cdc-search__submit" class="cdc-header__search-submit btn" type="submit">
221
+ <span class="cdc-header__search-icon cdc-fa-magnifying-glass" aria-hidden="true"></span>
222
+ <span class="visually-hidden">Search</span>
223
+ </button>
224
+ </div>
225
+ </form>
226
+ </div>
227
+ </div>
228
+ </div>
229
+ </div>
230
+
231
+ <div class="cdc-megamenu" role="navigation">
232
+ <div class="cdc-megamenu__cols cdc-page-offset" role="menu">
233
+ <div class="cdc-megamenu__col" data-audience="gen">
234
+ <div class="cdc-megamenu__heading">
235
+ <a role="menuitem" href="/respiratory-viruses/index.html">
236
+ <span>For Everyone</span>
237
+ <span class="cdc-fa-regular cdc-fa-house"></span>
238
+ </a>
239
+ </div>
240
+ <div class="cdc-megamenu__links">
241
+ <ul class="list-unstyled" role="menu">
242
+ <li role="menuitem">
243
+ <a class="truncate" data-post-id="5918" href="/respiratory-viruses/about/index.html"> About </a>
244
+ </li>
245
+ <li role="menuitem">
246
+ <a class="truncate" data-post-id="3764" href="/respiratory-viruses/risk-factors/index.html">
247
+ Risk Factors
248
+ </a>
249
+ </li>
250
+ <li role="menuitem">
251
+ <a class="truncate" data-post-id="3642" href="/respiratory-viruses/prevention/index.html">
252
+ Prevention
253
+ </a>
254
+ </li>
255
+ <li role="menuitem">
256
+ <a class="truncate" data-post-id="3653" href="/respiratory-viruses/treatment/index.html">
257
+ Treatment
258
+ </a>
259
+ </li>
260
+ <li role="menuitem">
261
+ <a class="truncate" data-post-id="5924" href="/respiratory-viruses/data/index.html">
262
+ Data and Trends
263
+ </a>
264
+ </li>
265
+ <li role="menuitem">
266
+ <a
267
+ class="truncate"
268
+ data-post-id="8076"
269
+ href="/respiratory-viruses/communication-resources/index.html"
270
+ >
271
+ Communication Resources
272
+ </a>
273
+ </li>
274
+ <li role="menuitem">
275
+ <a class="truncate" data-post-id="6038" href="/respiratory-viruses/guidance/index.html">
276
+ Respiratory Virus Guidance
277
+ </a>
278
+ </li>
279
+ <li role="menuitem">
280
+ <a href="/respiratory-viruses/site.html#gen" class="cdc-megamenu-all"> View all </a>
281
+ </li>
282
+ </ul>
283
+ </div>
284
+ </div>
285
+ <div class="cdc-megamenu__col" data-audience="hcp">
286
+ <div class="cdc-megamenu__heading">
287
+ <a role="menuitem" href="/respiratory-viruses/hcp/index.html">
288
+ <span>Health Care Providers</span>
289
+ <span class="cdc-fa-regular cdc-fa-house"></span>
290
+ </a>
291
+ </div>
292
+ <div class="cdc-megamenu__links">
293
+ <ul class="list-unstyled" role="menu">
294
+ <li role="menuitem">
295
+ <a class="truncate" data-post-id="8091" href="/respiratory-viruses/hcp/clinical-overview/index.html">
296
+ Clinical Overview
297
+ </a>
298
+ </li>
299
+ <li role="menuitem">
300
+ <a class="truncate" data-post-id="7851" href="/respiratory-viruses/hcp/conversation-tips/index.html">
301
+ Talking with Patients
302
+ </a>
303
+ </li>
304
+ <li role="menuitem">
305
+ <a href="/respiratory-viruses/site.html#hcp" class="cdc-megamenu-all"> View all </a>
306
+ </li>
307
+ </ul>
308
+ </div>
309
+ </div>
310
+ <div class="cdc-megamenu__col" data-audience="php">
311
+ <div class="cdc-megamenu__heading">
312
+ <a role="menuitem" href="/respiratory-viruses/site.html#php">
313
+ <span>Public Health</span>
314
+ <span></span>
315
+ </a>
316
+ </div>
317
+ <div class="cdc-megamenu__links">
318
+ <ul class="list-unstyled" role="menu">
319
+ <li role="menuitem">
320
+ <a class="truncate" data-post-id="8073" href="/respiratory-viruses/php/toolkit/index.html">
321
+ Communication Toolkit
322
+ </a>
323
+ </li>
324
+ <li role="menuitem">
325
+ <a href="/respiratory-viruses/site.html#php" class="cdc-megamenu-all"> View all </a>
326
+ </li>
327
+ </ul>
328
+ </div>
329
+ </div>
330
+ </div>
331
+ <div class="cdc-megamenu__footer">
332
+ <div class="col cdc-page-offset">
333
+ <div class="cdc-megamenu-footer-item cdc-megamenu-footer-item--left">
334
+ <div class="cdc-megamenu-related">
335
+ <p class="cdc-megamenu__footer-title">
336
+ <strong> Related Topics: </strong>
337
+ </p>
338
+ <div class="cdc-megamenu__linklist">
339
+ <a data-post-id="" href="/covid/index.html"> COVID-19 </a>
340
+ <span class="cdc-megamenu__separator">|</span>
341
+ <a data-post-id="0" href="/flu/index.html"> Seasonal Flu </a>
342
+ <span class="cdc-megamenu__separator">|</span>
343
+ <a data-post-id="" href="/rsv/index.html"> Respiratory Syncytial Virus (RSV) </a>
344
+ </div>
345
+ </div>
346
+ </div>
347
+ <div class="cdc-megamenu-footer-item cdc-megamenu-footer-item--right">
348
+ <a href="/respiratory-viruses/index.html" class="btn btn-outline-blue site-index-link"> Home </a>
349
+ </div>
350
+ </div>
351
+ </div>
352
+ </div>
353
+
354
+ <div class="cdc-header-mobile dropdown">
355
+ <div class="cdc-header-mobile__top">
356
+ <a href="https://www.cdc.gov">
357
+ <img
358
+ src="https://www.cdc.gov/TemplatePackage/5.0/img/logo/logo-notext.svg"
359
+ class="cdc-logo-mobile"
360
+ alt="Centers for Disease Control and Prevention. CDC twenty four seven. Saving Lives, Protecting People"
361
+ />
362
+ </a>
363
+ <div class="cdc-header-mobile__buttons">
364
+ <a href="#" id="mobile-search-toggle" class="search-link" aria-controls="mobile-search-body">
365
+ <i class="cdc-fa-regular cdc-fa-magnifying-glass"><span class="visually-hidden">search</span></i>
366
+ </a>
367
+ <div id="mobile-search-body" class="cdc-mobile-menu-search" aria-labelledby="mobile-search-toggle">
368
+ <form
369
+ action="https://search.cdc.gov/search/"
370
+ method="GET"
371
+ id="cdc-mobile-search-body"
372
+ class="cdc-mobile-search"
373
+ role="search"
374
+ aria-labelledby="cdc-mobile-search-toggle"
375
+ >
376
+ <div class="input-group">
377
+ <input
378
+ class="form-control cdc-mobile-search__input"
379
+ data-search-input
380
+ type="search"
381
+ name="query"
382
+ maxlength="300"
383
+ placeholder="Search"
384
+ required=""
385
+ tabindex="-1"
386
+ />
387
+
388
+ <button class="btn btn-outline-secondary btn--clear" type="button">
389
+ <span class="cdc-fa-light cdc-fa-xmark" aria-hidden="true"></span
390
+ ><span class="visually-hidden">clear</span>
391
+ </button>
392
+
393
+ <button class="btn btn-outline-secondary btn--search" type="submit">
394
+ <i class="cdc-fa-light cdc-fa-magnifying-glass"></i><span class="visually-hidden">search</span>
395
+ </button>
396
+ </div>
397
+ </form>
398
+ </div>
399
+ </div>
400
+ </div>
401
+
402
+ <div class="cdc-header-mobile__title">
403
+ <a href="/respiratory-viruses/index.html">Respiratory Illnesses</a>
404
+ <button type="button" id="mobileDropDownButton" class="nav-link dropdown-toggle" data-bs-offset="0,20">
405
+ Menu <i class="cdc-fa-angle-down"></i>
406
+ </button>
407
+ </div>
408
+
409
+ <div class="dropdown-menu cdc-mobile-menu" role="menu" aria-labelledby="mobileDropDownButton">
410
+ <div class="cdc-mobile-menu-search">
411
+ <form
412
+ action="https://search.cdc.gov/search/"
413
+ method="GET"
414
+ id="cdc-mobile-search-body"
415
+ class="cdc-mobile-search"
416
+ role="search"
417
+ aria-labelledby="cdc-mobile-search-toggle"
418
+ >
419
+ <div class="input-group">
420
+ <input
421
+ class="form-control cdc-mobile-search__input"
422
+ data-search-input
423
+ type="search"
424
+ name="query"
425
+ maxlength="300"
426
+ placeholder="Search"
427
+ required=""
428
+ tabindex="-1"
429
+ />
430
+
431
+ <button class="btn btn-outline-secondary btn--clear" type="button">
432
+ <span class="cdc-fa-light cdc-fa-xmark" aria-hidden="true"></span
433
+ ><span class="visually-hidden">clear</span>
434
+ </button>
435
+
436
+ <button class="btn btn-outline-secondary btn--search" type="submit">
437
+ <i class="cdc-fa-light cdc-fa-magnifying-glass"></i><span class="visually-hidden">search</span>
438
+ </button>
439
+ </div>
440
+ </form>
441
+ </div>
442
+ <div class="cdc-mobile-menu-body">
443
+ <div class="cdc-mobile-audience accordion">
444
+ <div class="accordion-item" data-audience="gen">
445
+ <div class="accordion-header">
446
+ <button
447
+ class="accordion-button"
448
+ aria-expanded="false"
449
+ type="button"
450
+ data-bs-toggle="collapse"
451
+ data-bs-target="#mobilemenu-gen"
452
+ >
453
+ <span class="accordion-button__text"> For Everyone </span>
454
+ </button>
455
+ </div>
456
+ <div class="accordion-collpase collapse" id="mobilemenu-gen">
457
+ <div class="accordion-body">
458
+ <ul>
459
+ <li class="truncate">
460
+ <a data-post-id="5918" href="/respiratory-viruses/about/index.html"> About </a>
461
+ </li>
462
+ <li class="truncate">
463
+ <a data-post-id="3764" href="/respiratory-viruses/risk-factors/index.html"> Risk Factors </a>
464
+ </li>
465
+ <li class="truncate">
466
+ <a data-post-id="3642" href="/respiratory-viruses/prevention/index.html"> Prevention </a>
467
+ </li>
468
+ <li class="truncate">
469
+ <a data-post-id="3653" href="/respiratory-viruses/treatment/index.html"> Treatment </a>
470
+ </li>
471
+ <li class="truncate">
472
+ <a data-post-id="5924" href="/respiratory-viruses/data/index.html"> Data and Trends </a>
473
+ </li>
474
+ <li class="truncate">
475
+ <a data-post-id="8076" href="/respiratory-viruses/communication-resources/index.html">
476
+ Communication Resources
477
+ </a>
478
+ </li>
479
+ <li class="truncate">
480
+ <a data-post-id="6038" href="/respiratory-viruses/guidance/index.html">
481
+ Respiratory Virus Guidance
482
+ </a>
483
+ </li>
484
+ <li>
485
+ <span class="item-link item-link--all">
486
+ <a href="/respiratory-viruses/site.html#gen"> View All </a>
487
+ </span>
488
+ <span class="item-link item-link--home">
489
+ <a href="/respiratory-viruses/index.html"> Home </a>
490
+ </span>
491
+ </li>
492
+ </ul>
493
+ </div>
494
+ </div>
495
+ </div>
496
+ <div class="accordion-item" data-audience="hcp">
497
+ <div class="accordion-header">
498
+ <button
499
+ class="accordion-button"
500
+ aria-expanded="false"
501
+ type="button"
502
+ data-bs-toggle="collapse"
503
+ data-bs-target="#mobilemenu-hcp"
504
+ >
505
+ <span class="accordion-button__text"> Health Care Providers </span>
506
+ </button>
507
+ </div>
508
+ <div class="accordion-collpase collapse" id="mobilemenu-hcp">
509
+ <div class="accordion-body">
510
+ <ul>
511
+ <li class="truncate">
512
+ <a data-post-id="8091" href="/respiratory-viruses/hcp/clinical-overview/index.html">
513
+ Clinical Overview
514
+ </a>
515
+ </li>
516
+ <li class="truncate">
517
+ <a data-post-id="7851" href="/respiratory-viruses/hcp/conversation-tips/index.html">
518
+ Talking with Patients
519
+ </a>
520
+ </li>
521
+ <li>
522
+ <span class="item-link item-link--all">
523
+ <a href="/respiratory-viruses/site.html#hcp"> View All </a>
524
+ </span>
525
+ <span class="item-link item-link--home">
526
+ <a href="/respiratory-viruses/hcp/index.html"> Home </a>
527
+ </span>
528
+ </li>
529
+ </ul>
530
+ </div>
531
+ </div>
532
+ </div>
533
+ <div class="accordion-item" data-audience="php">
534
+ <div class="accordion-header">
535
+ <button
536
+ class="accordion-button"
537
+ aria-expanded="false"
538
+ type="button"
539
+ data-bs-toggle="collapse"
540
+ data-bs-target="#mobilemenu-php"
541
+ >
542
+ <span class="accordion-button__text"> Public Health </span>
543
+ </button>
544
+ </div>
545
+ <div class="accordion-collpase collapse" id="mobilemenu-php">
546
+ <div class="accordion-body">
547
+ <ul>
548
+ <li class="truncate">
549
+ <a data-post-id="8073" href="/respiratory-viruses/php/toolkit/index.html">
550
+ Communication Toolkit
551
+ </a>
552
+ </li>
553
+ <li>
554
+ <span class="item-link item-link--all">
555
+ <a href="/respiratory-viruses/site.html#php"> View All </a>
556
+ </span>
557
+ </li>
558
+ </ul>
559
+ </div>
560
+ </div>
561
+ </div>
562
+ <div class="accordion-item accordion-item__related">
563
+ <div class="accordion-header">
564
+ <button
565
+ class="accordion-button"
566
+ aria-expanded="false"
567
+ type="button"
568
+ data-bs-toggle="collapse"
569
+ data-bs-target="#mobilemenu-related"
570
+ >
571
+ <span class="accordion-button__text">Related Topics</span>
572
+ </button>
573
+ </div>
574
+ <div class="accordion-collpase collapse" id="mobilemenu-related">
575
+ <div class="accordion-body">
576
+ <ul>
577
+ <li class="truncate">
578
+ <a data-post-id="" href="/covid/index.html"> COVID-19 </a>
579
+ </li>
580
+ <li class="truncate">
581
+ <a data-post-id="0" href="/flu/index.html"> Seasonal Flu </a>
582
+ </li>
583
+ <li class="truncate">
584
+ <a data-post-id="" href="/rsv/index.html"> Respiratory Syncytial Virus (RSV) </a>
585
+ </li>
586
+ </ul>
587
+ </div>
588
+ </div>
589
+ </div>
590
+ </div>
591
+ </div>
592
+ <div class="cdc-mobile-menu-footer">
593
+ <a href="/respiratory-viruses/index.html">
594
+ <span>Respiratory Illnesses</span>
595
+ </a>
596
+ </div>
597
+ </div>
598
+
599
+ <div class="cdc-header-mobile__faux-title" aria-hidden="true">&nbsp;</div>
600
+ </div>
601
+ <div class="cdc-mobile-navbar">
602
+ <div class="cdc-mobile-navbar__paging"></div>
603
+ <div class="cdc-mobile-navbar__links" tabindex="-1">
604
+ <a data-post-id="5918" href="/respiratory-viruses/about/index.html" tabindex="0"> About </a>
605
+ <a data-post-id="3764" href="/respiratory-viruses/risk-factors/index.html" tabindex="0"> Risk Factors </a>
606
+ <a data-post-id="3642" href="/respiratory-viruses/prevention/index.html" tabindex="0"> Prevention </a>
607
+ <a data-post-id="3653" href="/respiratory-viruses/treatment/index.html" tabindex="0"> Treatment </a>
608
+ <a data-post-id="5924" href="/respiratory-viruses/data/index.html" tabindex="0"> Data and Trends </a>
609
+ <a data-post-id="8076" href="/respiratory-viruses/communication-resources/index.html" tabindex="0">
610
+ Communication Resources
611
+ </a>
612
+ <a data-post-id="6038" href="/respiratory-viruses/guidance/index.html" tabindex="0">
613
+ Respiratory Virus Guidance
614
+ </a>
615
+ <a class="view-all dropdown-toggle" href="#"> View Menu </a>
616
+ </div>
617
+ </div>
618
+ </header>
619
+ <main class="container cdc-main" role="main" aria-label="Main Content Area">
620
+ <div class="cdc-page-title cdc-page-offset syndicate">
621
+ <h1>Visualization Preview</h1>
622
+ </div>
623
+
624
+ <section class="cdc-page-title-bar cdc-page-offset noindex">
625
+ <time class="cdc-page-title-bar__item cdc-page-title-bar__item--date" datetime="2025-12-19 00:00:00">
626
+ Dec. 18, 2025
627
+ </time>
628
+ </section>
629
+ <div id="content" class="cdc-page-content cdc-page-offset syndicate container">
630
+ <div class="cdc-dfe-body">
631
+ <div class="cdc-dfe-body__top">
632
+ <div
633
+ class="dfe-section dfe-section--page-summary summary-blurb"
634
+ data-section="cdc_data_surveillance_summary"
635
+ >
636
+ <div class="dfe-section__header">
637
+ <h2 class="editor-block--title" id="heading-rewj3powbs">About</h2>
638
+ </div>
639
+ <div class="dfe-section__content">
640
+ <span class="dfe-field"
641
+ >Provides an update on how COVID-19, influenza, and RSV may be spreading nationally and in your
642
+ state.</span
643
+ >
644
+ </div>
645
+ </div>
646
+ </div>
647
+ <div class="cdc-dfe-body__center">
648
+ <div class="dfe-section" data-section="cdc_data_surveillance_section_9">
649
+ <a
650
+ class="onThisPageAnchor"
651
+ id="cdc_data_surveillance_section_9-level-of-respiratory-illness-activity"
652
+ name="Level%20of%20Respiratory%20Illness%20Activity"
653
+ title="Level of Respiratory Illness Activity"
654
+ ><!-- --></a
655
+ >
656
+ <h2 class="editor-block--title" id="heading-lmcgyt_uu3">Level of Respiratory Illness Activity</h2>
657
+ <p>
658
+ Weekly percent of total emergency department visits associated with COVID-19, influenza, and RSV. Refer
659
+ to
660
+ <a
661
+ href="/respiratory-viruses/data/most-impacted.html#cdc_data_surveillance_section_4-data-notes"
662
+ class=""
663
+ >data notes</a
664
+ >
665
+ for more details.
666
+ </p>
667
+ <div class="dfe-block dfe-block--cdcmodule cdc_page_element dfe-block--width-standard">
668
+ <div class="dfe-block__inner">
669
+ <div class="mb-3">
670
+ <div id="viz-wrapper">
671
+ <div class="react-container" data-config="/examples/default.json"></div>
672
+ </div>
673
+ </div>
674
+ </div>
675
+ </div>
676
+ </div>
677
+
678
+ <div class="dfe-section" data-section="cdc_data_surveillance_section_6">
679
+ <a
680
+ class="onThisPageAnchor"
681
+ id="cdc_data_surveillance_section_6-explore-source-data"
682
+ name="Explore%20source%20data"
683
+ title="Explore source data"
684
+ ><!-- --></a
685
+ >
686
+ <h2 class="editor-block--title" id="heading-ttxgfbgnlv">Explore source data</h2>
687
+ <ul class="nested-list">
688
+ <li class="level-1">
689
+ <a href="https://gis.cdc.gov/grasp/fluview/main.html"
690
+ >State Map of Outpatient Respiratory Illness Activity</a
691
+ >
692
+ </li>
693
+ <li class="level-1">
694
+ <a href="https://gis.cdc.gov/grasp/fluview/fluportaldashboard.html"
695
+ >Outpatient Illness and Viral Surveillance</a
696
+ >
697
+ </li>
698
+ <li class="level-1">
699
+ <a href="https://covid.cdc.gov/covid-data-tracker/#maps_percent-covid-ed"
700
+ >State Map of Emergency Department Use for COVID-19</a
701
+ >
702
+ </li>
703
+ <li class="level-1">
704
+ <a href="https://covid.cdc.gov/covid-data-tracker/#maps_positivity-week"
705
+ >COVID-19 Testing, Hospitalization, and Death Trends</a
706
+ >
707
+ </li>
708
+ <li class="level-1">
709
+ <a href="/fluview/index.html" class="">Weekly U.S. Influenza Surveillance Report</a>
710
+ </li>
711
+ <li class="level-1"><a href="/nwss/index.html" class="">Current Wastewater Viral Activity Level</a></li>
712
+ </ul>
713
+ </div>
714
+ </div>
715
+ <div class="cdc-dfe-body__right page-right-rail">
716
+ <aside class="page-right-rail__static noindex" role="complementary">
717
+ <div class="on-this-page" data-sid="">
718
+ <h2 class="on-this-page__heading">On This Page</h2>
719
+ <div class="card-body">
720
+ <ul>
721
+ <li><a href="" title="Summary">Summary</a></li>
722
+ <li>
723
+ <a href="" title="Level of Respiratory Illness Activity">Level of Respiratory Illness Activity</a>
724
+ </li>
725
+ <li>
726
+ <a href="" title="Explore source data">Explore source data</a>
727
+ </li>
728
+ </ul>
729
+ </div>
730
+ </div>
731
+ </aside>
732
+ <aside class="page-right-rail__dynamic noindex" role="complementary">
733
+ <div data-related-nav></div>
734
+ </aside>
735
+ </div>
736
+ </div>
737
+ <div data-journey-next></div>
738
+
739
+ <section class="container page-mobile-bar">
740
+ <time class="page-mobile-bar__item page-mobile-bar__item--date" datetime="2025-12-18 19:00:00">
741
+ Dec. 18, 2025
742
+ </time>
743
+ </section>
744
+
745
+ <div class="page-content-sources noindex">
746
+ <div class="page-content-sources__header">
747
+ <a
748
+ data-action="summary"
749
+ class="collapsed"
750
+ href="#content-sources"
751
+ role="button"
752
+ data-bs-toggle="collapse"
753
+ aria-expanded="false"
754
+ aria-controls="content-sources"
755
+ data-cs-toggle=""
756
+ >Sources</a
757
+ >
758
+ <a
759
+ data-action="print"
760
+ href="#print"
761
+ class="d-none d-md-block"
762
+ aria-label="print this page"
763
+ onclick="window.print()"
764
+ >Print</a
765
+ >
766
+ <a
767
+ data-action="share"
768
+ href="#share"
769
+ data-bs-toggle="dropdown"
770
+ aria-label="share this page"
771
+ aria-expanded="false"
772
+ >Share</a
773
+ >
774
+ <div class="dropdown-menu page-share-bar" data-popper-placement="bottom-start">
775
+ <a href="#" class="page-share-facebook"><span class="cdc-icon-facebook"></span></a>
776
+ <a href="#" class="page-share-linkedin"><span class="cdc-icon-linkedin"></span></a>
777
+ <a href="#" class="page-share-twitter"><span class="cdc-icon-twitter"></span></a>
778
+ <a href="#" class="page-share-syndication"><span class="cdc-icon-rss"></span></a>
779
+ </div>
780
+ </div>
781
+
782
+ <div class="page-share-container">
783
+ <div class="page-share-popup" id="page-share-popup" role="dialog">
784
+ <a
785
+ target="_blank"
786
+ title="Share to Facebook"
787
+ rel="noreferrer noopener"
788
+ class="page-share-facebook metrics-share-facebook"
789
+ href="https://www.facebook.com/"
790
+ >
791
+ <span class="sr-only">Facebook</span>
792
+ <span class="cdc-icon-facebook-inverse"></span>
793
+ </a>
794
+ <a
795
+ target="_blank"
796
+ title="Share to LinkedIn"
797
+ rel="noreferrer noopener"
798
+ class="page-share-linkedin metrics-share-linkedin"
799
+ href="https://www.linkedin.com/"
800
+ >
801
+ <span class="sr-only">LinkedIn</span>
802
+ <span class="cdc-icon-linkedin-inverse"></span>
803
+ </a>
804
+ <a
805
+ target="_blank"
806
+ title="Share to Twitter"
807
+ rel="noreferrer noopener"
808
+ class="page-share-twitter metrics-share-twitter"
809
+ href="https://twitter.com/"
810
+ >
811
+ <span class="sr-only">Twitter</span>
812
+ <span class="cdc-icon-twitter-inverse"></span>
813
+ </a>
814
+ <a
815
+ target="_blank"
816
+ title="Embed this Page"
817
+ rel="noreferrer noopener"
818
+ class="page-share-syndication metrics-share-syndicate"
819
+ href="https://tools.cdc.gov/medialibrary/index.aspx#/sharecontent"
820
+ >
821
+ <span class="sr-only">Syndicate</span>
822
+ <span class="fi cdc-icon-syndication-round"></span>
823
+ </a>
824
+ </div>
825
+ </div>
826
+ <div id="content-sources" class="page-content-sources__body accordion-collapse collapse">
827
+ <div class="callout callout-content-source" role="status">
828
+ <div class="callout-heading">Content Source:</div>
829
+ <a class="cdc-block-link" href="/ncird/index.html"
830
+ >National Center for Immunization and Respiratory Diseases (NCIRD)</a
831
+ >
832
+ </div>
833
+ </div>
834
+ </div>
835
+
836
+ <section class="container related-pages related-pages__mobile">
837
+ <div data-related-nav-mobile></div>
838
+ </section>
839
+ </div>
840
+ </main>
841
+
842
+ <section class="site-footer container noindex">
843
+ <div class="row cdc-footer__inner">
844
+ <div class="col-lg-3 site-footer__heading has-home-link">
845
+ <h2>
846
+ <a
847
+ href="/respiratory-viruses/index.html"
848
+ class="cdc-footer__super-title"
849
+ aria-label="Respiratory Illnesses"
850
+ >
851
+ <i class="cdc-icon cdc-fa-solid cdc-fa-house"></i>
852
+ <span>Respiratory Illnesses&nbsp;<i class="cdc-icon cdc-fa-light cdc-fa-angle-right"></i></span>
853
+ </a>
854
+ </h2>
855
+ <p class="cdc-footer__site-desc">
856
+ Respiratory illnesses affect the lungs and airways. Get information on common causes, prevention actions,
857
+ and current levels of illness in your community.
858
+ </p>
859
+ <a
860
+ href="/respiratory-viruses/site.html"
861
+ class="cdc-footer__all btn-outline__half btn btn-outline-white btn-arrow"
862
+ >
863
+ View All
864
+ </a>
865
+ </div>
866
+ <div class="col-lg-8 offset-lg-1">
867
+ <div class="row site-footer__links">
868
+ <div class="col-md-6">
869
+ <!-- If Group Site is Enabled, Need at Least 2 Links -->
870
+ <h3 class="site-footer__links__header">
871
+ <a class="cdc-footer__super-link" href="/respiratory-viruses/index.html#gen">
872
+ <span>For Everyone</span>
873
+ <span class="cdc-icon cdc-fa-light cdc-fa-angle-right"></span>
874
+ </a>
875
+ </h3>
876
+ <ul>
877
+ <li>
878
+ <a data-post-id="5918" href="/respiratory-viruses/about/index.html"> About </a>
879
+ </li>
880
+ <li>
881
+ <a data-post-id="3764" href="/respiratory-viruses/risk-factors/index.html"> Risk Factors </a>
882
+ </li>
883
+ <li>
884
+ <a data-post-id="3642" href="/respiratory-viruses/prevention/index.html"> Prevention </a>
885
+ </li>
886
+ <li>
887
+ <a data-post-id="3653" href="/respiratory-viruses/treatment/index.html"> Treatment </a>
888
+ </li>
889
+ <li>
890
+ <a data-post-id="5924" href="/respiratory-viruses/data/index.html"> Data and Trends </a>
891
+ </li>
892
+ <li>
893
+ <a data-post-id="8076" href="/respiratory-viruses/communication-resources/index.html">
894
+ Communication Resources
895
+ </a>
896
+ </li>
897
+ <li>
898
+ <a data-post-id="6038" href="/respiratory-viruses/guidance/index.html">
899
+ Respiratory Virus Guidance
900
+ </a>
901
+ </li>
902
+ </ul>
903
+ </div>
904
+ <div class="col-md-6">
905
+ <div class="audience-column">
906
+ <h3 class="site-footer__links__header">
907
+ <a class="cdc-footer__super-link" href="/respiratory-viruses/hcp/index.html#hcp">
908
+ <span>Health Care Providers</span>
909
+ <span class="cdc-icon cdc-fa-light cdc-fa-angle-right"></span>
910
+ </a>
911
+ </h3>
912
+ <ul>
913
+ <li>
914
+ <a data-post-id="8091" href="/respiratory-viruses/hcp/clinical-overview/index.html">
915
+ Clinical Overview
916
+ </a>
917
+ </li>
918
+ <li>
919
+ <a data-post-id="7851" href="/respiratory-viruses/hcp/conversation-tips/index.html">
920
+ Talking with Patients
921
+ </a>
922
+ </li>
923
+ </ul>
924
+ </div>
925
+ <div class="audience-column">
926
+ <h3 class="site-footer__links__header">
927
+ <a class="cdc-footer__super-link" href="/respiratory-viruses/site.html#php">
928
+ <span>Public Health</span>
929
+ <span class="cdc-icon cdc-fa-light cdc-fa-angle-right"></span>
930
+ </a>
931
+ </h3>
932
+ <ul>
933
+ <li>
934
+ <a data-post-id="8073" href="/respiratory-viruses/php/toolkit/index.html">
935
+ Communication Toolkit
936
+ </a>
937
+ </li>
938
+ </ul>
939
+ </div>
940
+ </div>
941
+ </div>
942
+ <div class="row site-footer__emailupdates">
943
+ <div class="col">
944
+ <i class="cdc-fa-regular cdc-fa-envelope" role="img" aria-hidden="true"></i>
945
+ <a href="https://tools.cdc.gov/campaignproxyservice/subscriptions.aspx#featured"
946
+ >Sign up for Email Updates</a
947
+ >
948
+ <i class="cdc-fa-light cdc-fa-angle-right" role="img" aria-hidden="true"></i>
949
+ </div>
950
+ </div>
951
+ </div>
952
+ </div>
953
+ </section>
954
+
955
+ <footer class="container cdc-footer noindex" role="contentinfo">
956
+ <section class="cdc-footer__desktop">
957
+ <nav class="cdc-footer__nav" id="cdc-footer-nav">
958
+ <div class="row cdc-footer__inner">
959
+ <div class="col">
960
+ <a
961
+ id="contactUs-btn"
962
+ class="cdc-footer__nav-link"
963
+ data-bs-toggle="collapse"
964
+ href="#contactUs"
965
+ role="button"
966
+ aria-expanded="false"
967
+ aria-controls="contactUs"
968
+ >
969
+ Contact Us <span class="cdc-fa-angle-down"></span>
970
+ </a>
971
+ <div
972
+ class="cdc-footer__subnav collapse"
973
+ id="contactUs"
974
+ data-bs-parent="#cdc-footer-nav"
975
+ aria-labelledby="contactUs-btn"
976
+ tabindex="-1"
977
+ >
978
+ <div class="cdc-footer__subnav-inner">
979
+ <a class="cdc-footer__nav-heading" href="https://www.cdc.gov/cdc-info/index.html"
980
+ >Contact Us <span class="cdc-fa-angle-right"></span
981
+ ></a>
982
+ <ul>
983
+ <li><a class="cdc-footer__subnav-link" href="tel:800-232-4636">Call 800-232-4636</a></li>
984
+ <li>
985
+ <a class="cdc-footer__subnav-link" href="https://www.cdc.gov/cdc-info/index.html">Contact CDC</a>
986
+ </li>
987
+ </ul>
988
+ </div>
989
+ </div>
990
+
991
+ <a
992
+ id="aboutCDC-btn"
993
+ class="cdc-footer__nav-link"
994
+ data-bs-toggle="collapse"
995
+ href="#aboutCDC"
996
+ role="button"
997
+ aria-expanded="false"
998
+ aria-controls="aboutCDC"
999
+ >
1000
+ About CDC <span class="cdc-fa-angle-down"></span>
1001
+ </a>
1002
+ <div
1003
+ class="cdc-footer__subnav collapse"
1004
+ id="aboutCDC"
1005
+ data-bs-parent="#cdc-footer-nav"
1006
+ aria-labelledby="aboutCDC-btn"
1007
+ tabindex="-1"
1008
+ >
1009
+ <div class="cdc-footer__subnav-inner">
1010
+ <a class="cdc-footer__nav-heading" href="https://www.cdc.gov/about/"
1011
+ >About CDC <span class="cdc-fa-angle-right"></span
1012
+ ></a>
1013
+ <ul>
1014
+ <li><a class="cdc-footer__subnav-link" href="https://www.cdc.gov/media/">Pressroom</a></li>
1015
+ <li>
1016
+ <a class="cdc-footer__subnav-link" href="https://www.cdc.gov/about/organization/">Organization</a>
1017
+ </li>
1018
+ <li>
1019
+ <a class="cdc-footer__subnav-link" href="https://www.cdc.gov/budget/">Budget &amp; Funding</a>
1020
+ </li>
1021
+ <li>
1022
+ <a class="cdc-footer__subnav-link" href="https://jobs.cdc.gov/index.html">Careers &amp; Jobs</a>
1023
+ </li>
1024
+ </ul>
1025
+ </div>
1026
+ </div>
1027
+
1028
+ <a
1029
+ id="policies-btn"
1030
+ class="cdc-footer__nav-link"
1031
+ data-bs-toggle="collapse"
1032
+ href="#policies"
1033
+ role="button"
1034
+ aria-expanded="false"
1035
+ aria-controls="policies"
1036
+ >
1037
+ Policies <span class="cdc-fa-angle-down"></span>
1038
+ </a>
1039
+ <div
1040
+ class="cdc-footer__subnav collapse"
1041
+ id="policies"
1042
+ data-bs-parent="#cdc-footer-nav"
1043
+ aria-labelledby="policies-btn"
1044
+ tabindex="-1"
1045
+ >
1046
+ <div class="cdc-footer__subnav-inner">
1047
+ <div class="row">
1048
+ <div class="col-lg-3">
1049
+ <ul>
1050
+ <li>
1051
+ <a class="cdc-footer__subnav-link" href="https://www.cdc.gov/other/accessibility.html"
1052
+ >Accessibility</a
1053
+ >
1054
+ </li>
1055
+ <li>
1056
+ <a
1057
+ class="cdc-footer__subnav-link"
1058
+ href="https://www.cdc.gov/Other/disclaimer.html#exit-notification"
1059
+ >External Links</a
1060
+ >
1061
+ </li>
1062
+ <li>
1063
+ <a class="cdc-footer__subnav-link" href="https://www.cdc.gov/other/privacy.html">Privacy</a>
1064
+ </li>
1065
+ <li>
1066
+ <a class="cdc-footer__subnav-link" href="https://www.cdc.gov/Other/policies.html"
1067
+ >Web Policies</a
1068
+ >
1069
+ </li>
1070
+ </ul>
1071
+ </div>
1072
+ <div class="col-lg-3">
1073
+ <ul>
1074
+ <li><a class="cdc-footer__subnav-link" href="https://www.cdc.gov/foia/">FOIA</a></li>
1075
+ <li><a class="cdc-footer__subnav-link" href="https://oig.hhs.gov/">OIG</a></li>
1076
+ <li>
1077
+ <a class="cdc-footer__subnav-link" href="https://www.cdc.gov/oeeowe/no-fear-act/"
1078
+ >No Fear Act</a
1079
+ >
1080
+ </li>
1081
+ <li>
1082
+ <a class="cdc-footer__subnav-link" href="https://www.cdc.gov/other/nondiscrimination.html"
1083
+ >Nondiscrimination</a
1084
+ >
1085
+ </li>
1086
+ <li>
1087
+ <a
1088
+ class="cdc-footer__subnav-link"
1089
+ href="https://www.hhs.gov/vulnerability-disclosure-policy/index.html"
1090
+ >Vulnerability Disclosure Policy</a
1091
+ >
1092
+ </li>
1093
+ </ul>
1094
+ </div>
1095
+ </div>
1096
+ </div>
1097
+ </div>
1098
+
1099
+ <a
1100
+ id="languages-btn"
1101
+ class="cdc-footer__nav-link"
1102
+ data-bs-toggle="collapse"
1103
+ href="#languages"
1104
+ role="button"
1105
+ aria-expanded="false"
1106
+ aria-controls="languages"
1107
+ >
1108
+ Languages <span class="cdc-fa-angle-down"></span>
1109
+ </a>
1110
+ <div
1111
+ class="cdc-footer__subnav collapse"
1112
+ id="languages"
1113
+ data-bs-parent="#cdc-footer-nav"
1114
+ aria-labelledby="languages-btn"
1115
+ tabindex="-1"
1116
+ >
1117
+ <div class="cdc-footer__subnav-inner">
1118
+ <div class="row">
1119
+ <div class="col-lg-2">
1120
+ <a href="https://www.cdc.gov/other/other-languages/index.html" class="cdc-footer__nav-heading"
1121
+ >Languages</a
1122
+ >
1123
+ <ul>
1124
+ <li><a class="cdc-footer__subnav-link" href="https://www.cdc.gov/spanish/">Español</a></li>
1125
+ </ul>
1126
+ </div>
1127
+ <div class="col-lg-10">
1128
+ <a href="https://www.cdc.gov/other/language-assistance.html" class="cdc-footer__nav-heading"
1129
+ >Language Assistance</a
1130
+ >
1131
+ <div class="row">
1132
+ <div class="col-lg-3">
1133
+ <ul>
1134
+ <li>
1135
+ <a
1136
+ class="cdc-footer__subnav-link"
1137
+ href="https://www.cdc.gov/other/language-assistance.html#Spanish"
1138
+ >Español</a
1139
+ >
1140
+ </li>
1141
+ <li>
1142
+ <a
1143
+ class="cdc-footer__subnav-link"
1144
+ href="https://www.cdc.gov/other/language-assistance.html#Chinese"
1145
+ >繁體中文</a
1146
+ >
1147
+ </li>
1148
+ <li>
1149
+ <a
1150
+ class="cdc-footer__subnav-link"
1151
+ href="https://www.cdc.gov/other/language-assistance.html#Vietnamese"
1152
+ >Tiếng Việt</a
1153
+ >
1154
+ </li>
1155
+ <li>
1156
+ <a
1157
+ class="cdc-footer__subnav-link"
1158
+ href="https://www.cdc.gov/other/language-assistance.html#Korean"
1159
+ >한국어</a
1160
+ >
1161
+ </li>
1162
+ </ul>
1163
+ </div>
1164
+ <div class="col-lg-3">
1165
+ <ul>
1166
+ <li>
1167
+ <a
1168
+ class="cdc-footer__subnav-link"
1169
+ href="https://www.cdc.gov/other/language-assistance.html#Tagalog"
1170
+ >Tagalog</a
1171
+ >
1172
+ </li>
1173
+ <li>
1174
+ <a
1175
+ class="cdc-footer__subnav-link"
1176
+ href="https://www.cdc.gov/other/language-assistance.html#Russian"
1177
+ >Русский</a
1178
+ >
1179
+ </li>
1180
+ <li>
1181
+ <a
1182
+ class="cdc-footer__subnav-link"
1183
+ href="https://www.cdc.gov/other/language-assistance.html#Arabic"
1184
+ >العربية</a
1185
+ >
1186
+ </li>
1187
+ <li>
1188
+ <a
1189
+ class="cdc-footer__subnav-link"
1190
+ href="https://www.cdc.gov/other/language-assistance.html#Haitian"
1191
+ >Kreyòl Ayisyen</a
1192
+ >
1193
+ </li>
1194
+ </ul>
1195
+ </div>
1196
+ <div class="col-lg-3">
1197
+ <ul>
1198
+ <li>
1199
+ <a
1200
+ class="cdc-footer__subnav-link"
1201
+ href="https://www.cdc.gov/other/language-assistance.html#French"
1202
+ >Français</a
1203
+ >
1204
+ </li>
1205
+ <li>
1206
+ <a
1207
+ class="cdc-footer__subnav-link"
1208
+ href="https://www.cdc.gov/other/language-assistance.html#Polish"
1209
+ >Polski</a
1210
+ >
1211
+ </li>
1212
+ <li>
1213
+ <a
1214
+ class="cdc-footer__subnav-link"
1215
+ href="https://www.cdc.gov/other/language-assistance.html#Portuguese"
1216
+ >Português</a
1217
+ >
1218
+ </li>
1219
+ <li>
1220
+ <a
1221
+ class="cdc-footer__subnav-link"
1222
+ href="https://www.cdc.gov/other/language-assistance.html#Italian"
1223
+ >Italiano</a
1224
+ >
1225
+ </li>
1226
+ </ul>
1227
+ </div>
1228
+ <div class="col-lg-3">
1229
+ <ul>
1230
+ <li>
1231
+ <a
1232
+ class="cdc-footer__subnav-link"
1233
+ href="https://www.cdc.gov/other/language-assistance.html#German"
1234
+ >Deutsch</a
1235
+ >
1236
+ </li>
1237
+ <li>
1238
+ <a
1239
+ class="cdc-footer__subnav-link"
1240
+ href="https://www.cdc.gov/other/language-assistance.html#Japanese"
1241
+ >日本語</a
1242
+ >
1243
+ </li>
1244
+ <li>
1245
+ <a
1246
+ class="cdc-footer__subnav-link"
1247
+ href="https://www.cdc.gov/other/language-assistance.html#Farsi"
1248
+ >فارسی</a
1249
+ >
1250
+ </li>
1251
+ <li>
1252
+ <a
1253
+ class="cdc-footer__subnav-link"
1254
+ href="https://www.cdc.gov/other/language-assistance.html#English"
1255
+ >English</a
1256
+ >
1257
+ </li>
1258
+ </ul>
1259
+ </div>
1260
+ </div>
1261
+ </div>
1262
+ </div>
1263
+ </div>
1264
+ </div>
1265
+
1266
+ <a
1267
+ id="archive-btn"
1268
+ class="cdc-footer__nav-link"
1269
+ data-bs-toggle="collapse"
1270
+ href="#archive"
1271
+ role="button"
1272
+ aria-expanded="false"
1273
+ aria-controls="archive"
1274
+ >
1275
+ Archive <span class="cdc-fa-angle-down"></span>
1276
+ </a>
1277
+ <div
1278
+ class="cdc-footer__subnav collapse"
1279
+ id="archive"
1280
+ data-bs-parent="#cdc-footer-nav"
1281
+ aria-labelledby="archive-btn"
1282
+ tabindex="-1"
1283
+ >
1284
+ <div class="cdc-footer__subnav-inner">
1285
+ <ul>
1286
+ <li><a class="cdc-footer__subnav-link" href="https://archive.cdc.gov/">CDC Archive</a></li>
1287
+ <li>
1288
+ <a class="cdc-footer__subnav-link" href="https://stacks.cdc.gov/">Public Health Publications</a>
1289
+ </li>
1290
+ </ul>
1291
+ </div>
1292
+ </div>
1293
+ </div>
1294
+ </div>
1295
+ </nav>
1296
+ </section>
1297
+
1298
+ <section class="cdc-footer__mobile">
1299
+ <nav class="cdc-footer__nav">
1300
+ <div class="row cdc-footer__inner">
1301
+ <div class="col">
1302
+ <a
1303
+ class="cdc-footer__heading"
1304
+ data-bs-toggle="collapse"
1305
+ href="#mobile-footer-contactUs"
1306
+ role="button"
1307
+ aria-expanded="false"
1308
+ aria-controls="mobile-footer-contactUs"
1309
+ >
1310
+ Contact Us <span class="cdc-fa-angle-down"></span>
1311
+ </a>
1312
+ <div class="cdc-footer__group col offset-lg-1 collapse" id="mobile-footer-contactUs">
1313
+ <a href="https://www.cdc.gov/cdc-info/index.html" class="cdc-footer__nav-heading">Contact Us</a>
1314
+ <span class="cdc-fa-angle-right"></span>
1315
+ <ul>
1316
+ <li><a href="tel:800-232-4636">Call 800-232-4636</a></li>
1317
+ <li><a href="https://www.cdc.gov/cdc-info/index.html">Contact CDC</a></li>
1318
+ </ul>
1319
+ </div>
1320
+
1321
+ <a
1322
+ class="cdc-footer__heading"
1323
+ data-bs-toggle="collapse"
1324
+ href="#mobile-footer-aboutCDC"
1325
+ role="button"
1326
+ aria-expanded="false"
1327
+ aria-controls="mobile-footer-aboutCDC"
1328
+ >
1329
+ About CDC <span class="cdc-fa-angle-down"></span>
1330
+ </a>
1331
+ <div class="cdc-footer__group col offset-lg-1 collapse" id="mobile-footer-aboutCDC">
1332
+ <ul>
1333
+ <li><a href="https://www.cdc.gov/media/">Pressroom</a></li>
1334
+ <li><a href="https://www.cdc.gov/about/organization/">Organization</a></li>
1335
+ <li><a href="https://www.cdc.gov/budget/">Budget &amp; Funding</a></li>
1336
+ <li><a href="https://jobs.cdc.gov/index.html">Careers &amp; Jobs</a></li>
1337
+ <li><a href="https://www.cdc.gov/about/">About CDC</a></li>
1338
+ </ul>
1339
+ </div>
1340
+
1341
+ <a
1342
+ class="cdc-footer__heading"
1343
+ data-bs-toggle="collapse"
1344
+ href="#mobile-footer-policies"
1345
+ role="button"
1346
+ aria-expanded="false"
1347
+ aria-controls="mobile-footer-policies"
1348
+ >
1349
+ Policies <span class="cdc-fa-angle-down"></span>
1350
+ </a>
1351
+ <div
1352
+ class="cdc-footer__group col offset-lg-1 collapse"
1353
+ id="mobile-footer-policies"
1354
+ data-bs-parent="#cdc-footer-nav"
1355
+ >
1356
+ <ul>
1357
+ <li><a href="https://www.cdc.gov/other/accessibility.html">Accessibility</a></li>
1358
+ <li><a href="https://www.cdc.gov/Other/disclaimer.html#exit-notification">External Links</a></li>
1359
+ <li><a href="https://www.cdc.gov/other/privacy.html">Privacy</a></li>
1360
+ <li><a href="https://www.cdc.gov/Other/policies.html">Web Policies</a></li>
1361
+ </ul>
1362
+ <ul>
1363
+ <li><a href="https://www.cdc.gov/foia/">FOIA</a></li>
1364
+ <li><a href="https://oig.hhs.gov/">OIG</a></li>
1365
+ <li><a href="https://www.cdc.gov/oeeowe/no-fear-act/">No Fear Act</a></li>
1366
+ <li><a href="https://www.cdc.gov/other/nondiscrimination.html">Nondiscrimination</a></li>
1367
+ <li>
1368
+ <a href="https://www.hhs.gov/vulnerability-disclosure-policy/index.html"
1369
+ >Vulnerability Disclosure Policy</a
1370
+ >
1371
+ </li>
1372
+ </ul>
1373
+ </div>
1374
+
1375
+ <a
1376
+ class="cdc-footer__heading"
1377
+ data-bs-toggle="collapse"
1378
+ href="#mobile-footer-languages"
1379
+ role="button"
1380
+ aria-expanded="false"
1381
+ aria-controls="mobile-footer-languages"
1382
+ >
1383
+ Languages <span class="cdc-fa-angle-down"></span>
1384
+ </a>
1385
+ <div
1386
+ class="cdc-footer__group col offset-lg-1 collapse"
1387
+ id="mobile-footer-languages"
1388
+ data-bs-parent="#cdc-footer-nav"
1389
+ >
1390
+ <p class="cdc-footer__nav-heading">Languages <span class="cdc-fa-angle-right"></span></p>
1391
+ <ul>
1392
+ <li><a href="https://www.cdc.gov/spanish/">Español</a></li>
1393
+ </ul>
1394
+ <p class="cdc-footer__nav-heading">Language Assistance <span class="cdc-fa-angle-right"></span></p>
1395
+ <ul>
1396
+ <li><a href="https://www.cdc.gov/other/language-assistance.html#Spanish">Español</a></li>
1397
+ <li><a href="https://www.cdc.gov/other/language-assistance.html#Chinese">繁體中文</a></li>
1398
+ <li><a href="https://www.cdc.gov/other/language-assistance.html#Vietnamese">Tiếng Việt</a></li>
1399
+ <li><a href="https://www.cdc.gov/other/language-assistance.html#Korean">한국어</a></li>
1400
+ <li><a href="https://www.cdc.gov/other/language-assistance.html#Tagalog">Tagalog</a></li>
1401
+ <li><a href="https://www.cdc.gov/other/language-assistance.html#Russian">Русский</a></li>
1402
+ <li><a href="https://www.cdc.gov/other/language-assistance.html#Arabic">العربية</a></li>
1403
+ <li><a href="https://www.cdc.gov/other/language-assistance.html#Haitian">Kreyòl Ayisyen</a></li>
1404
+ <li><a href="https://www.cdc.gov/other/language-assistance.html#French">Français</a></li>
1405
+ <li><a href="https://www.cdc.gov/other/language-assistance.html#Polish">Polski</a></li>
1406
+ <li><a href="https://www.cdc.gov/other/language-assistance.html#Portuguese">Português</a></li>
1407
+ <li><a href="https://www.cdc.gov/other/language-assistance.html#Italian">Italiano</a></li>
1408
+ <li><a href="https://www.cdc.gov/other/language-assistance.html#German">Deutsch</a></li>
1409
+ <li><a href="https://www.cdc.gov/other/language-assistance.html#Japanese">日本語</a></li>
1410
+ <li><a href="https://www.cdc.gov/other/language-assistance.html#Farsi">فارسی</a></li>
1411
+ <li><a href="https://www.cdc.gov/other/language-assistance.html#English">English</a></li>
1412
+ </ul>
1413
+ </div>
1414
+
1415
+ <a
1416
+ class="cdc-footer__heading"
1417
+ data-bs-toggle="collapse"
1418
+ href="#mobile-footer-archive"
1419
+ role="button"
1420
+ aria-expanded="false"
1421
+ aria-controls="mobile-footer-archive"
1422
+ >
1423
+ Archive <span class="cdc-fa-angle-down"></span>
1424
+ </a>
1425
+ <div class="cdc-footer__group col offset-lg-1 collapse" id="mobile-footer-archive">
1426
+ <ul>
1427
+ <li><a href="https://archive.cdc.gov/">CDC Archive</a></li>
1428
+ <li><a href="https://stacks.cdc.gov/">Public Health Publications</a></li>
1429
+ </ul>
1430
+ </div>
1431
+ </div>
1432
+ </div>
1433
+ </nav>
1434
+ </section>
1435
+ <div class="cdc-footer__body">
1436
+ <div class="row cdc-footer__inner">
1437
+ <div class="col-lg-3 cdc-footer__body-logo">
1438
+ <a href="https://www.cdc.gov/">
1439
+ <img
1440
+ src="https://www.cdc.gov/TemplatePackage/5.0/img/logo/cdc-logo-tag-right.svg"
1441
+ alt="Centers for Disease Control and Prevention"
1442
+ />
1443
+ </a>
1444
+ </div>
1445
+ <div class="col-lg-7 cdc-footer__body-social">
1446
+ <div>
1447
+ <a href="https://www.facebook.com/CDC">
1448
+ <i role="img" aria-label="facebook icon" class="cdc-icon-facebook"></i>
1449
+ </a>
1450
+ <a href="https://twitter.com/CDCgov">
1451
+ <i role="img" aria-label="x icon" class="cdc-icon-twitter"></i>
1452
+ </a>
1453
+ <a href="https://www.instagram.com/CDCgov">
1454
+ <i role="img" aria-label="instagram icon" class="cdc-icon-instagram"></i>
1455
+ </a>
1456
+ <a href="https://www.linkedin.com/company/centers-for-disease-control-and-prevention">
1457
+ <i role="img" aria-label="linkedin icon" class="cdc-icon-linkedin"></i>
1458
+ </a>
1459
+ </div>
1460
+ <div>
1461
+ <a href="https://www.youtube.com/cdc">
1462
+ <i role="img" aria-label="youtube icon" class="cdc-icon-youtube"></i>
1463
+ </a>
1464
+ <a href="https://www.pinterest.com/cdcgov">
1465
+ <i role="img" aria-label="pinterest icon" class="cdc-icon-pinterest"></i>
1466
+ </a>
1467
+ <a href="https://www.snapchat.com/add/cdcgov">
1468
+ <i role="img" aria-label="snapchat icon" class="cdc-icon-snapchat"></i>
1469
+ </a>
1470
+ <a href="https://www.cdc.gov/rss">
1471
+ <i role="img" aria-label="rss icon" class="cdc-icon-rss"></i>
1472
+ </a>
1473
+ </div>
1474
+ </div>
1475
+ </div>
1476
+ </div>
1477
+ <div class="cdc-footer__agency">
1478
+ <div class="cdc-footer__inner">
1479
+ <a href="https://hhs.gov">HHS.gov</a>
1480
+ <a href="https://usa.gov">USA.gov</a>
1481
+ </div>
1482
+ </div>
1483
+ </footer>
1484
+
1485
+ <!-- progress bar -->
1486
+ <div class="cdc-page-progress-bar d-none noindex">
1487
+ <div class="cdc-page-progress-bar__scrubber"></div>
1488
+ </div>
1489
+
1490
+ <!-- to top button -->
1491
+ <a href="#" class="cdc-page-to-top d-none noindex noprint" title="Go to top">
1492
+ <div class="cdc-page-to-top__bar"><i class="cdc-fa-solid cdc-fa-arrow-up"></i></div>
1493
+ </a>
1494
+
1495
+ <script src="https://www.cdc.gov/TemplatePackage/contrib/libs/bootstrap/5x/bootstrap.bundle.min.js?_=04929"></script>
1496
+ <script src="https://www.cdc.gov/TemplatePackage/contrib/libs/jquery/latest/jquery.js?_=04929"></script>
1497
+ <script src="https://www.cdc.gov/TemplatePackage/5.0/js/app.min.js?_=04929"></script>
1498
+
1499
+ <script type="module">
1500
+ // {{DEV_JS}}
1501
+ </script>
1502
+ </body>
1503
+ </html>