Skip to content
Snippets Groups Projects
Select Git revision
  • 7bd55f5a16bb4fb7618f2c37fbbb5970ef985acb
  • master default protected
2 results

index.html

Blame
  • minkyungjae's avatar
    Kyung Jae Min authored
    7bd55f5a
    History
    index.html 1.09 KiB
    <!DOCTYPE html>
    <html>
        <head>
            <meta charset="utf-8">
            <title>Insert title here</title>
            <link rel="stylesheet" 
           href="/webjars/bootstrap/5.1.3/css/bootstrap.min.css">
            <script src="/webjars/jquery/3.6.0/jquery.min.js"></script>
            <script src="/webjars/popper.js/2.9.3/umd/popper.min.js"></script>
            <script 
           src="/webjars/bootstrap/5.1.3/js/bootstrap.min.js"></script>
           </head>
           <body>
           <div class="container">
            <table class="table table-hover">
            <thead class="thead-dark">
            <tr>
            <th>codeId</th>
            <th>code</th>
            <th>codeNm</th>
            <th>codeDc</th>
            </tr>
            </thead>
            <tbody>
            <tr>
            <td>COM001</td>
            <td>REG01</td>
            <td>단일 게시판 이용 등록</td>
            <td>단일 게시판 이용 등록</td>
            </tr>
            <tr>
            <td>COM001</td>
            <td>REG02</td>
            <td>커뮤니티 등록</td>
            <td>커뮤니티 등록</td>
            </tr>
            </tbody>
            </table>
           </div>
           </body>
           </html>