리스트 연습

미국립 약물 중독 연구소 표

잭아저씨 2023. 2. 22. 15:24

<!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>
    <style>
        td{text-align: center;}
        th{background-color: bisque;}
        table,th,td{
            border: 1px solid;
            border-collapse: collapse;
            padding: 6px 8px;
        }
    </style>
</head>
<body>
    <table>
        <caption>
        <small><b>미국립약물중독연구소</b><br>
        <b>(Nation Institute on Drug Abuse, NIDA) 보고서 (1994)</b>
        </small>
        </caption>
        <tr>
            <th></th>
            <th>니코틴</th>
            <th>헤로인</th>
            <th>코카인</th>
            <th>알코올</th>
            <th>카페인</th>
            <th>대마초</th>
        </tr>
        <tr>
            <th>의존성</th>
            <td>6</td>
            <td>5</td>
            <td>4</td>
            <td>4</td>
            <td>2</td>
            <td>1</td>
        </tr>
        <tr>
            <th>금단성</th>
            <td>4</td>
            <td>5</td>
            <td>3</td>
            <td>6</td>
            <td>2</td>
            <td>1</td>
        </tr>
        <tr>
            <th>내성</th>
            <td>5</td>
            <td>6</td>
            <td>3</td>
            <td>4</td>
            <td>2</td>
            <td>1</td>
        </tr>
        <tr>
            <th>강화성</th>
            <td>3</td>
            <td>6</td>
            <td>4</td>
            <td>6</td>
            <td>1</td>
            <td>3</td>
        </tr>
        <tr>
            <th>독성</th>
            <td>6</td>
            <td>6</td>
            <td>6</td>
            <td>6</td>
            <td>6</td>
            <td>6</td>
        </tr>
    </table>
    <figcaption>
    <small>(높은 숫자=높은효과)</small>
    </figcaption>
</body>
</html>

'리스트 연습' 카테고리의 다른 글

5대 건강식품 소개  (0) 2023.02.28
리트리버 소개 페이지  (0) 2023.02.28
영화 관람 등급 표  (0) 2023.02.22