본문 바로가기
HTML

HTML-01.ex1

by EUN-JI 2023. 10. 26.
<!DOCTYPE html>
<html>
    <meta charset="utf-8">
    <head>
        <title>my homepage</title>
    </head>

    <body>
        <h2>my homepage</h2>
        <p>
            <img src="./image/programmer.png" alt="프로그램">
            <strong>컴퓨터 프로그래머</strong>를 꿈꾸며 열심히 공부하고 있는 1인입니다.
        </p>

        <h3>현재 학습하고 있는 과목</h3>
        <ul>
            <li>li>C 언어 </li>
            <li>JAVA 언어 </li>
            <li>웹프로그래밍 <a href="http://www.w3c.org" target="_blank">W3C사이트</a></li>
        </ul>  
        <h3>이번 학기 시간표</h3>

        <table border="1">
            <caption>시간표</caption>
            <tr>
                <th>&nbsp;</th>
                <th>월요일</th>
                <th>화요일</th>
                <th>수요일</th>
            </tr>
            <tr>
                <th>1교시</th>
                <th>c언어</th>
                <th>java</th>
                <th>java</th>
            </tr>
            <tr>
                <th>2교시</th>
                <th>c언어</th>
                <th>java</th>
                <th>java</th>
            </tr>
         

        </table>
    </body>
</html>

'HTML' 카테고리의 다른 글

HTML-D02  (0) 2023.10.26
HTML-D01  (0) 2023.10.26
html//01  (0) 2023.08.30