- Create the following folder/file structure:
- Create a basic HTML document
- Create a script tag on the document head element
- Add the following html code
<!DOCTYPE html>
<html lang="en">
<head>
<title>It's all JavaScript Baby!!</title>
</head>
<body>
</body>
</html>
- Select the body element
- Create a h1 element
- Add the h1 element the following content:
Create Dynamic content!!!
- Create a paragraph element
- Add the p element the following content:
This elements were created using JavaScript
- Inster the h1 element into the body element
- Inster the paragraph element into the body element