HTML Cheatsheet
Basic HTML Document
<!DOCTYPE html>
<html>
<head>
<title>My Page</title>
</head>
<body>Content goes here</body>
</html>
Common Elements
Headings: h1-h6
Paragraph: <p>This is a paragraph.</p>
Link: <a href='[Link] Website</a>
Image: <img src='[Link]' alt='Description'>
Lists: ul, ol, li
Containers: div, span
Attributes: id, class, href, src, alt
Quick Reference
html, head, title, body, h1-h6, p, a, img, ul, ol, li, div, span, br, strong