728x90

 

 

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>0_practice</title>

</head>
<body>

    <table>
        <caption>caption</caption>  <!-- 테이블 안에 달아도 글씨는 이미지 하단에 뜸 -->
        <figure> figure
            <img src="sample/image/city1.png" alt="city1 picture" 
                width="=400px" height="250px"> <!-- html과 동일 선상의 위치의 폴더 하위에 존재할 경우 / 붙이기x -->
            <figcaption>figcaption1</figcaption>
        </figure>
    </table>
    <figcaption>figcaption2</figcaption>
    <caption>caption</caption>

    <br><hr><br>

    <!-- 보더 지정X -->
    <table> <!-- 보더 지정안하면 테두리가 없어 표처럼 안보임 -->
        <thead> table태그 border 지정X
        <tr>
            <td>1</td>
            <td>12/td>
        </tr>
        </thead>
        <tfoot>
        <tr>
            <td>3</td>
            <td>4</td>
        </tr>
        </tfoot>
    </table>
    <!-- 보더 지정 -->
    <table border="1" style="border-color: red; border-style: double;"> 
        <thead> table태그 border 지정o
        <tr>
            <td>1</td>
            <td>2</td>  
        </tr>
        </thead>
        <tfoot>
        <tr>
            <td>3</td>
            <td>4</td>
        </tr>
        </tfoot>
    </table>

    
</body>
</html>

 

 

728x90
반응형

+ Recent posts