Advertisement
asimryu

관광정보 api template

Nov 12th, 2018
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.71 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>관광정보</title>
  6.     <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
  7.     <link rel="stylesheet" href="http://code.jquery.com/ui/1.12.1/themes/start/jquery-ui.css">
  8.     <script src="http://code.jquery.com/jquery-1.12.1.min.js"></script>
  9.     <script src="http://code.jquery.com/ui/1.11.4/jquery-ui.min.js"></script>
  10. </head>
  11. <body>
  12.  
  13.     <div class="container">
  14.         <div class="jumbotron text-center">
  15.             <h1>한국관광지정보</h1>
  16.         </div>
  17.         <div class="main">
  18.             <form onsubmit="return false;" class="form-inline">
  19.                 <select name="areaCode" id="areaCode" class="form-control">
  20.                     <option value="">지역코드</option>
  21.                 </select>
  22.             </form>
  23.         </div>
  24.         <div class="list">
  25.             <table class="table">
  26.                 <thead class="thead-dark">
  27.                     <tr>
  28.                         <th>사진</th>
  29.                         <th>관광지명</th>
  30.                         <th>주소</th>
  31.                         <th>연락처</th>
  32.                         <th>경도</th>
  33.                         <th>위도</th>
  34.                     </tr>
  35.                 </thead>
  36.                 <tbody>
  37.                    
  38.                 </tbody>
  39.             </table>
  40.         </div>
  41.  
  42.     </div>
  43.  
  44.    
  45.     <div id="pop" style="display: none;">
  46.         <h2 id="detail-title" class="detail-info"></h2>
  47.         <p>주소: <span id="detail-addr" class="detail-info"></span></p>
  48.         <p>전화: <span id="detail-tel" class="detail-info"></span></p>
  49.         <p>좌표: <span id="detail-mapxy" class="detail-info"></span></p>
  50.         <p>설명: <span id="detail-overview" class="detail-info"></span></p>
  51.         <p><img id="detail-pic" src="" class="detail-img" style="max-width: 90%;"></p>
  52.     </div>
  53.  
  54.  
  55.  
  56.     <script>
  57.  
  58.     </script>
  59. </body>
  60. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement