HTML Notes
HTML Notes
<!DOCTYPE html>`
<html>
<head>
<title>My First Web Page</title>
</head>
<body>
<h1>Hello, World!</h1>
</body>
</html>
o Key Parts:
▪ DOCTYPE: Declares the document type.
▪ <html>: The root element.
▪ <head>: Contains meta-information.
▪ <body>: Contains the content of the page.
• Visuals: Break down the code into parts with annotations.