Created
June 9, 2020 06:18
-
-
Save arunrreddy/d669d9cb115972c784f6d6040b093db2 to your computer and use it in GitHub Desktop.
BJS Intro - Scripts almost always are just before the end of the body tag
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
| <html> | |
| <head> | |
| <title>My first website</title> | |
| </head> | |
| <body> | |
| <header></header> | |
| <main></main> | |
| <footer></footer> | |
| <script src="myscript1.js"></script> | |
| <script src="myscript2.js"></script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment