Dialing codes

Dialing codes for phones (prefixes)

by lchau

HTML

<table border="1" cellpadding="0" cellspacing="1" width="85%">
    <tbody>
        <tr>
            <th>Dialing Code</th>
            <th>Description</th>
        </tr>
        <tr>
            <td>*2</td>
            <td>Access to the Care self-service IVR and Care call centers.</td>
        </tr>
        <tr>
            <td>#222</td>
            <td>Option 3 order accessories.</td>
        </tr>
        <tr>
            <td>*3</td>
            <td>Payments made through Sprint phones through the Pay by Phone Automated IVR.</td>
        </tr>
        <tr>
            <td>*4</td>
            <td>Get minutes used information for each category of usage in English, including text messaging and current bill cycle dates. Get information on current rate plan.</td>
        </tr>
        <tr>
            <td>*5</td>
            <td>Get minutes used information for each category of usage in Spanish, including text messaging and current bill cycle dates. Get information on current rate plan.</td>
        </tr>
        <tr>
            <td>*11</td>
            <td>Pennsylvania - PA Turnpikes: (Bucks, Montgomery, Lebanon, Daulphin, Cumberland, Franklin, Fulton, Bedford, Somerset, West Moreland, Allegheny, and ****** Counties)
                <br>Utah – Salt Lake and Utah Counties</td>
        </tr>
        <tr>
            <td>*12</td>
            <td>Pennsylvania – PA Turnpikes: Allegheny County, Parkway West, and Parkway East</td>
        </tr>
        <tr>
            <td>*27</td>
            <td>Louisiana - Lake Ponchatrain Causeway near New Orleans</td>
        </tr>
        <tr>
            <td>*28</td>
            <td>size: 10pt;">Turn on both: Conditional Call Forward - Busy and No Answer
                <br>
            </td>
        </tr>
        <tr>
            <td>*38</td>
            <td>size: 10pt;">Turn off Conditional Call Forward - Busy and No Answer</td>
        </tr>
        <tr>
            <td>*47</td>
            <td>Alabama – Statewide
               ...

CSS

table {
    font-family: monospace;
    border-collapse: collapse;
    width: 85%;
    margin: auto;
    margin-top: 20px;
}
table, th, td {
    border: 1px solid black;
}
td { 
    padding: 3px 5px;
}
td:nth-child(1) {
    text-align: center;
    width: 100px;
}
tr:nth-child(even) {
    background: #eee;
}
tr:nth-child(odd) {
    background: #fff;
}