HTML Basics Crash Course

Nerd Cafe | نرد کافه

1. What is HTML?

HTML (HyperText Markup Language) is the standard language used to create web pages. It structures content like headings, paragraphs, images, links, lists, and more.

2. HTML Document Structure

Every HTML page follows this basic structure:

<!DOCTYPE html>
<html>
  <head>
    <title>Page Title</title>
  </head>
  <body>
    <!-- Your content goes here -->
  </body>
</html>

Key Parts

  • <!DOCTYPE html> → tells the browser this is HTML5

  • <html> → root element

  • <head> → meta info (title, styles, etc.)

  • <body> → visible page content

3. Basic HTML Tags

Headings

Paragraphs

4. Formatting Text

Images

6. Lists

Ordered List

Unordered List

7. Tables

8. Forms (Basic)

💖 Support Our Work

If you find this post helpful and would like to support my work, you can send a donation via TRC-20 (USDT). Your contributions help us keep creating and sharing more valuable content.

circle-check

Thank you for your generosity! 🙏

Channel Overview

🌐 Website: www.nerd-cafe.irarrow-up-right

📺 YouTube: @nerd-cafearrow-up-right

🎥 Aparat: nerd_cafearrow-up-right

📌 Pinterest: nerd_cafearrow-up-right

📱 Telegram: @nerd_cafearrow-up-right

📝 Blog: Nerd Café on Virgoolarrow-up-right

💻 GitHub: nerd-cafearrow-up-right

Last updated