Basic Tags
<!DOCTYPE html> - tells the browser “I'm modern HTML”
<html> - wraps the whole page
<head> - meta info, title, links to scripts/styles
<body> - what actually shows up on the page
<h1></h1> to <h6></h6> - headings, big to small
<p>chaos!</p> - paragraph
<!-- Courtesy of ChatGPT --> - Comment
Basic HTML Webpage Structure
<!DOCTYPE html>
<head>
metatdata and title
</head>
<body>
all visible page content goes here
<h1>Heading</h1>
<p>Paragraphs</p>
<!-- Non-rendered comments if needed -->
</body>
Escape Characters
< for <
> for >
& for &