HTML Basics
HTML (HyperText Markup Language) is the standard markup language for creating web pages.
Structure of an HTML Document
A basic HTML document looks like this:
<!DOCTYPE html>
<html>
<head>
<title>My First Web Page</title>
</head>
<body>
<h1>Welcome to HTML!</h1>
<p>This is a paragraph.</p>
</body>
</html>
Essential HTML Elements
- Headings:
<h1>
to<h6>
- Paragraphs:
<p>
- Links:
<a href="url">link text</a>
- Images:
<img src="image.jpg" alt="description">
Best Practices
- Always use proper indentation
- Close all tags
- Use semantic elements
- Include alt text for images
- Validate your HTML code
Getting Started
- Use a simple text editor
- Save files with .html extension
- View in a web browser
- Learn by practicing!