안지영

Modify result table css

This diff is collapsed. Click to expand it.
......@@ -10,6 +10,70 @@
<link rel='stylesheet' href='/css/category.css'>
<title>📝 결과</title>
<h1>
🥘 맛집 현황</h1>
<table class="table">
<thead class="thead-dark">
<tr>
<th>음식점명</th>
<th>전화번호</th>
<th>대표음식</th>
<th>도로명주소</th>
</tr>
</thead>
<tbody>
<%for (var i =0; i <stores.length; i++){%>
<tr>
<td>
<%=stores[i].RESTRT_NM%>
</td>
<td>
<%=stores[i].TASTFDPLC_TELNO%>
</td>
<td>
<%=stores[i].REPRSNT_FOOD_NM%>
</td>
<td>
<%=stores[i].REFINE_ROADNM_ADDR%>
</td>
</tr>
<%}%>
</tbody>
</table>
<h3>총 맛집 개수 :
<%=stores.length%>
</h3>
<h1>🍔 패스트푸드점 현황 </h1>
<table class="table">
<thead class="thead-dark">
<tr>
<th>사업장명</th>
<th>도로명주소</th>
</tr>
</thead>
<tbody>
<%for (var i =0; i <fast_food_stores.length; i++){%>
<tr>
<td>
<%=fast_food_stores[i].BIZPLC_NM%>
</td>
<td>
<%=fast_food_stores[i].REFINE_ROADNM_ADDR%>
</td>
</tr>
<%}%>
</tbody>
</table>
<h3>패스트푸드점 개수 :
<%=fast_food_stores.length%>
</h3>
</head>
<body>
......
<h1>🎬 영화관 현황</h1>
<table class="table">
<thead>
<thead class="thead-dark">
<th>사업장명</th>
<th>도로명주소</th>
</thead>
......
<h1>
🥘 맛집 현황</h1>
<table class="table">
<thead class="thead-dark">
<thead>
<tr>
<th>음식점명</th>
......@@ -39,7 +39,7 @@
<h1>🍔 패스트푸드점 현황 </h1>
<table class="table">
<thead>
<thead class="thead-dark">
<tr>
<th>사업장명</th>
<th>도로명주소</th>
......
<h1>🏋️‍♂️ 운동시설 현황</h1>
<table class="table">
<thead>
<thead class="thead-dark">
<tr>
<th>
사업장명
......
<h1>🌳 도시공원 현황</h1>
<table class="table">
<thead>
<thead class="thead-dark">
<tr>
<th>도시공원명</th>
<th>도로명주소</th>
......
<h1>📷 CCTV 현황</h1>
<table class="table">
<thead>
<thead class="thead-dark">
<tr>
<th>도로명주소</th>
<th>카메라대수</th>
......@@ -26,7 +26,7 @@
<h1>💡 보안등 현황</h1>
보안등 소재지 지번주소 :
<table class="table">
<thead>
<thead class="thead-dark">
<tr>
<th>도로명주소</th>
<th>설치개수</th>
......
......@@ -2,7 +2,7 @@
<table class="table">
<thead>
<thead class="thead-dark">
<tr>
<th>도서관명</th>
<th>도로명주소</th>
......@@ -40,7 +40,7 @@
<h1>📒 학원 현황 </h1>
<table class="table">
<thead>
<thead class="thead-dark">
<tr>
<th>시설명</th>
<th>교습과정명</th>
......
......@@ -2,7 +2,7 @@
<table class="table">
<thead>
<thead class="thead-dark">
<tr>
<th>시장명</th>
<th>도로명주소</th>
......
<h1>🚌 버스 현황</h1>
<table class="table">
<thead>
<thead class="thead-dark">
<tr>
<th>버스정류장명</th>
<th>버스정류장ID</th>
......@@ -30,7 +30,7 @@
<h1>🚆 지하철역 현황</h1>
<table class="table">
<thead>
<thead class="thead-dark">
<tr>
<th>지하철역명</th>
<th>지하철역ID</th>
......