Menu



Manage

파일 목록
Study_Web > ex10-1,2.html Lines 29 | 757 바이트
다운로드

                        <!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>
<script>
    function pop() {
        var newWin = window.open("", "환영", "width=500,height=400");
        newWin.document.write("접속 감사합니다!");
        newWin.document.body.style.backgroundColor = "yellowgreen";
        newWin.document.close();
    }
</script>

<body onload="pop()">
    <h3>THML5</h3>
    <hr>
    <p>
        HTML5를 학습하는 사이트입니다
        여기서 HTML5, CSS3, 자바스크립트를
        배울 수 있습니다.</p>

</body>

</html>