[HTML]<table>, <a href=" ">

    <Table>
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Document</title>
    </head>
    <body>
        <table>
            <caption>1학기 성적</caption>
            <thead>
                <tr>
                    <th>이름</th>
                    <th>HTML</th>
                    <th>CSS</th>
                </tr>
            </thead>
            <tbody>
                <tr>
                    <th>가</th>
                    <th>80</th>
                    <th>90</th>
                </tr>
                <tr>
                    <th>나</th>
                    <th>70</th>
                    <th>99</th>
                </tr>
            </tbody>
            <tfoot>
                <tr>합계</tr>
                <tr>170</tr>
                <tr>169</tr>
            </tfoot>
        </table>
    </body>
    </html>​
    <a href = "#chap1">
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Document</title>
    </head>
    <body>
        <ul>
            <li><a href="www.google.com">구글</a></li>
            <li><a href="#chap1">1장</a></li>
        </ul>
    
        <div style="width: auto; height: 800px; background: green;"></div>
        <div id="chap1">
            <h1>1장</h1>
        </div>
    </body>
    </html>

    'HTML CSS' 카테고리의 다른 글

    [HTML]인터넷프로그래밍  (0) 2024.09.05
    [CSS] 단어정리(2)  (0) 2024.09.04
    [CSS] 단어정리 (1)  (3) 2024.09.04
    HTML 단어 정리(2)  (0) 2023.06.21
    HTML 단어 정리(1)  (0) 2023.06.21

    댓글