https://
The https:// in the address bar means your information is encrypted and can not be accessed by anyone else
.gov
Only government entities in the U.S. can end in .gov

Put all department contact info and social media links in a contact block. Contact blocks display important information about a department or entity. If possible, all four contact areas (address, phone, email, and social media) should always be displayed. If a field is missing, the row for that content should be removed.

Implementation

The contact block template uses the hCard standard for marking up contact information. Even if you do not use the contact block as it is rendered above, use the appropriate hCard markup for all contact information.

<table class="no-alternate connect h-card">
    <tr>
        <th scope="row"><i class="fas fa-map-marker-alt fa-2x" aria-hidden="true"></i>
            <span class="accessible">Address</span>
        </th>
        <td class="p-adr pvl">
            <span class="p-street-address">1401 JFK Boulevard</span><br>
            <span class="p-extended-address">MSB Suite 630</span><br>
            <span class="p-locality">Philadelphia</span>, <span class="region" title="Pennsylvania"> PA</span>
            <span class="p-postal-code">19102</span>
        </td>
    </tr>
    <tr>
        <th scope="row">
            <span class="accessible">Email</span>
            <i class="far fa-envelope fa-2x" aria-hidden="true"></i>
        </th>
        <td class="pvl">
            <a href="mailto:websupport@phila.gov" class="u-email">websupport@phila.gov</a>
        </td>
    </tr>
    <tr>
        <th scope="row">
            <i class="far fa-at fa-2x" aria-hidden="true"></i>
            <span class="accessible">Social</span>
        </th>
        <td class="pvl">
            <a href="https://twitter.com/PHLInnovation" class="phs" data-analytics="social">
                <i class="fab fa-twitter fa-2x" title="Twitter" aria-hidden="true"></i>
                <span class="show-for-sr">Twitter</span>
            </a>
            <a href="https://github.com/CityOfPhiladelphia" class="phs" data-analytics="social">
                <i class="fab fa-github fa-2x" title="GitHub" aria-hidden="true"></i>
                <span class="show-for-sr">GitHub</span>
            </a>
        </td>
    </tr>
</table>