An empty HTML with placeholder JS file for new projects.
Last active
February 7, 2022 11:19
-
-
Save acidtone/383cf362c923f5126ecb32621dc7c0d4 to your computer and use it in GitHub Desktop.
JS Starter: Empty HTML and JS file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Add JS here |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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