Eunsu486

Modify--Add function to show address

<h4> 동물병원 현황</h4>
<h4>🏥 동물병원 현황</h4>
<table class="table">
<thead class="thead-dark">
<tr>
<th>동물병원명</th>
<th>도로명주소</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<%=titles%>
</td>
</tr>
<%for (var i=0; i <hospital_list.length; i++){%>
<tr>
<td>
<%=hospital_list[i].title._text%>
</td>
<td>
<%=hospital_list[i].venue._text%>
</td>
</tr>
<%}%>
</tbody>
</table>
......