Create a new folder on your computer and create three new text files. Do so on Notepad for Windows or TextEdit on Mac. If you can, name them index.html, style.css, and script.js
Here's what you'll write in the index.html file:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>My Page</title>
</head>
<body>
Goodbye, Cruel World!!
</body>
</html>