노마드코더/Vanilla JS

#1-5 Hello World with Javascript

준승박 2021. 8. 22. 16:31

What are we learning


 
css, html js 파일을 통하여 간단한 문장 출력해보기

index.css

body {
    background: peru;
    color: #fff;
}

index.html

<!DOCTYPE html>
<html lang="ko">
<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>바닐라자바스크립트</title>
    <link rel="stylesheet" href="index.css"/>
</head>
<body>
    <h1>This works!</h1>
    <script src="index.js">
    </script>
</body>
</html>

index.js

alert("Im Working. Im js. Im Beautiful. Im worth it")

결과값