Skip to content

Instantly share code, notes, and snippets.

@acidtone
Last active February 7, 2022 11:19
Show Gist options
  • Save acidtone/383cf362c923f5126ecb32621dc7c0d4 to your computer and use it in GitHub Desktop.
Save acidtone/383cf362c923f5126ecb32621dc7c0d4 to your computer and use it in GitHub Desktop.
JS Starter: Empty HTML and JS file

JS Starter Code: Empty HTML with JS file

An empty HTML with placeholder JS file for new projects.

// Add JS here
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Starter HTML file with placeholder JS file</title>
<script src="client.js" defer></script>
</head>
<body>
<!-- Place HTML Here -->
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment