Menu



Manage

파일 목록
Study_Web > 이후/jquery/ex11-1.html Lines 23 | 579 바이트
다운로드

                        <!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>
    <script src="../js/jquery.js"></script>
    <script>
        $(function () {
            $("#txt").css("color", "red");
            $("#title").css("color", "blue").css("font", "20");
        });
    </script>
</head>

<body>
    <h1 id="title"> 제목입니다. </h1>
    <p id="txt"> 내용입니다. </p>
</body>

</html>