<!DOCTYPE html>
<html lang="en">
<head>
<!-- CSS LINK -->
<link rel="stylesheet" href="./PATH_TO_CSS_FILE">
<!-- JS LINK -->
<script src="./PATH_TO_JS_FILE"></script>
<title>Super Sweet Website</title>
</head>
<body>
<!-- HTML GOES HERE -->
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<!-- CSS LINK -->
<link rel="stylesheet" href="./PATH_TO_CSS_FILE">
<!-- JS LINK -->
<title>Super Sweet Website</title>
</head>
<body>
<!-- HTML GOES HERE -->
<script src="./PATH_TO_JS_FILE"></script>
</body>
</html>
const submitBtn = document.getElementById('submit')
const buttons = document.getElementsByTagName('button')
const box = document.getElementById('box')
box.style.background = "bada55" //sets the background color
const box = document.getElementById('box')
box.className // box
box.className = 'square'
box.className // square
const box = document.getElementById('box')
box.classList // box
box.classList.add('square')
box.classList // box, square
box.classList.remove('square')
box.classList // box
const box = document.getElementById('box')
box.innerText = 'Hello, world'
const box = document.getElementById('box')
box.innerHTML = <p> + 'Hello, world' + </p>
const userInput = document.getElementById('input')
const userInputValue = userInput.value
userInputValue = 'yo dude'