[Vanilla JS] Vanilla JS 시작하기

less than 1 minute read

index.html

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

index.css

body{
  background-color: peru;
}

h1{
  color: white;
}

index.js

alert("Hello!!");

Updated: