Javascript로 Hello World 출력하기

phillip oh·2020년 4월 17일
0
post-thumbnail
post-custom-banner

노마드 코더님의 Vanilla JS 강의를 듣고 정리한 내용입니다.

  • 주의) 자바스크립트 태그는 항상 body 맨 마지막 부분에 넣는다.

index.html

<DOCTYPE html>
	<head>
    	<title>Something<title>
        <link rel="stylesheet" href="index.css" />
    </head>
    <body>
    	<h1>Hello World!</h1>
        <script src="index.js"></script>    
    </body>
<html>

index.css

body{
	background-color : peru;
}

h1{
	color:white;
}

index.js

alert("This is alert.")
console.log("This is log.")
profile
모빌리티 스타트업에서 데이터를 다루고 있습니다.
post-custom-banner

0개의 댓글