EMBEDS
We provide a simple embed for states and counties that you can provide on your website that highlights current intervention as well as case load and mortality. Given that it’s an embed, over time it will be updated to include other information, such as the projection charts.
Here is an example of what they currently look like, live:
State Embeds
You can quickly add it to your website via an iFrame
:
<iframe
src="https://covidactnow.org/embed/us/co"
title="CoVid Act Now"
width="350"
height="700"
frameBorder="0"
scrolling="no"
></iframe>
Or via a script
include:
<div class="covid-act-now-embed" data-state-id="CO"/>
<script src="https://covidactnow.org/scripts/embed.js"></script>
</div>
Make sure to swap out the state code from co
above to whatever your desired state is.
County Embeds
We also provide county embeds, referenced via FIPS codes in an iFrame
:
<iframe
src="https://covidactnow.org/embed/us/county/08031"
title="CoVid Act Now"
width="350"
height="700"
frameBorder="0"
scrolling="no"
></iframe>
Or via a script
include:
<div class="covid-act-now-embed" data-fips-id="08031"/>
<script src="https://covidactnow.org/scripts/embed.js"></script>
</div>
Make sure to swap out the FIPS code above to whatever your desired state/county is.