index.html for a javascript cheat sheet. Not finished... only about a third of the way through this one. ********** <!DOCTYPE html> <html> <head> <!-- Cheatsheet created as a code along with a Traversy Media video on YouTube --> <!-- https://www.youtube.com/watch?v=vEROU2XtPR8&t=323s --> <title>JavaScript Cheatsheet</title> <link rel="stylesheet" type="text/css" href="style.css"> <!-- To connect to an external JavaScript file, use the following code <script src="main.js"></script> --> </head> <body> <div class="header"> <h1>Learning JaveScript</h1> <p>With Brad Traversy</p> </div> <div class="container"> </div> <div> <!-- Use <script></script> TAGs when not using external JS file --> <!-- It is best --> <scri...
Comments
Post a Comment