๋ณธ๋ฌธ ๋ฐ”๋กœ๊ฐ€๊ธฐ
JavaScript/Vanilla JS

[๋ฐ”๋‹๋ผJS๋กœ ํฌ๋กฌ ์•ฑ ๋งŒ๋“ค๊ธฐ] Hello World with Javascript

by ์ฝ”๋”ฉํ•˜๋Š” ๋ถ•์–ด 2021. 2. 25.
๋ฐ˜์‘ํ˜•

[์ถœ์ฒ˜-์œ ํŠœ๋ธŒ ๋…ธ๋งˆ๋“œ ์ฝ”๋” Nomad Coders]

https://youtu.be/u0BypNb0lEI

 

index.html

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

 

index.css

body {
    background-color: peru;
}

h1 {
    color: white;
}

 

index.js

console.log('Im Working. Im JS. Im Beautiful. Im worth it');

 

๋ฐ˜์‘ํ˜•

๋Œ“๊ธ€