본문 바로가기
HTML

html//01

by EUN-JI 2023. 8. 30.
<!DOCTYPE html>
<html>
    <!-- 1. 화면에 안보이는 설정-->
    <head>
        <title>My Web Page</title>
        <!-- css랑 연결 하는 것 -->
        <link rel="stylesheet" href="./index.css">
        <!-- JS랑 연결 하는 것 -->
        <script src="./index.js"></script>
    </head>

    <!-- 2. 화면에 보이는 영역-->
    <body>
        <h2>My First Web Page</h2>
        <p>This is first web page</p>
        <p>한글도 표시됨</p>

        <img src="./newyork.jpg" id="aa">
        <button onclick="show()">로그인</button>
        <button onclick="ChangeImage()">이미지 변경</button>
    </body>
</html>

'HTML' 카테고리의 다른 글

HTML-D02  (0) 2023.10.26
HTML-01.ex1  (0) 2023.10.26
HTML-D01  (0) 2023.10.26