MMDT1021 Chapter 2 Notes - page 2
Starting Your Web Page
<html> </html>
Add the Head
<html> <head> <title>This is my page title</title> </head> </html>
Add the Body
<html> <head> <title>This is my page title</title> </head> <body> <h2>This is a heading</h2> This is where I put the body of my page. </body> </html>