HTML CSS

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

jeong_rice 2024. 9. 4. 15:33

<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>