🎨 Frontend
HTML Basics
Last updated: 2025-09-25 02:02:49
HTML Fundamentals
HTML (HyperText Markup Language) is the standard markup language for web pages.
Basic Structure
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Page Title</title>
</head>
<body>
<h1>Hello World</h1>
</body>
</html>
Essential Tags
- <h1> to <h6> - Headings
- <p> - Paragraphs
- <div> - Container element
- <span> - Inline element
- <a> - Links
- <img> - Images
- <ul>, <ol>, <li> - Lists