December 2019
Beginner
464 pages
10h 31m
English
In This Chapter
• Learn about the various places your code can live
• Understand the pros and cons of the various approaches
Let’s take a break from our regularly scheduled...programming (ha!). So far, all of the code we have been writing has been contained fully inside an HTML document:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>An Interesting Title Goes Here</title> <style> body { background-color: #EEE; } h1 { font-family: sans-serif; font-size: 36px; } p { font-family: sans-serif; } </style> </head> <body> <h1>Are you ready for this?</h1> <p>Are you ready for seeing (or already having seen!) the most amazing dialog ever?</p> <script> alert("hello, world!" ...