html 테이블 만들기 예시
<table summary=”This is caption for web access”>
<caption>
this is caption
</caption>
<tr>
<th>City</th>
<th>Date</th>
<th>Temperature</th>
<th>Altitude</th>
<th>Population</th>
<th>Diner Rating</th>
</tr>
<tr>
<td>Walla Walla, WA</td>
<td>June 15th</td>
<td>75</td>
<td>1,204 ft</td>
<td>29,686</td>
<td>4/5</td>
</tr>
<tr>
<td>Magic City, ID</td>
<td>June 25th</td>
<td>74</td>
<td>5,312 ft</td>
<td>50</td>
<td>3/5</td>
</tr>
<tr>
<td>Bountiful</td>
<td>July 10</td>
<td>91</td>
<td>4226ft</td>
<td>41173</td>
<td>4/5</td>
</tr>
<tr>
<td>Last Chance,CO</td>
<td>july 23</td>
<td>102</td>
<td>4780ft</td>
<td>265</td>
<td>3/5</td>
</tr>
<tr>
<td>Truth of Consequences</td>
<td>August 9</td>
<td>93</td>
<td>4242 ft</td>
<td>7289</td>
<td>5/5</td>
</tr>
</table>
City | Date | Temperature | Altitude | Population | Diner Rating |
---|---|---|---|---|---|
Walla Walla, WA | June 15th | 75 | 1,204 ft | 29,686 | 4/5 |
Magic City, ID | June 25th | 74 | 5,312 ft | 50 | 3/5 |
Bountiful | July 10 | 91 | 4226ft | 41173 | 4/5 |
Last Chance,CO | july 23 | 102 | 4780ft | 265 | 3/5 |
Truth of Consequences | August 9 | 93 | 4242 ft | 7289 | 5/5 |