0% found this document useful (0 votes)
7 views2 pages

Beginner's Guide to HTML Basics

HTML, or Hyper Text Markup Language, is a markup language used to create the structure of websites, including text, images, links, and forms. The document outlines the basic HTML structure, common tags, lists, tables, and forms. It concludes by emphasizing that learning HTML is the first step in web development, followed by CSS and JavaScript.

Uploaded by

babarff0202
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
7 views2 pages

Beginner's Guide to HTML Basics

HTML, or Hyper Text Markup Language, is a markup language used to create the structure of websites, including text, images, links, and forms. The document outlines the basic HTML structure, common tags, lists, tables, and forms. It concludes by emphasizing that learning HTML is the first step in web development, followed by CSS and JavaScript.

Uploaded by

babarff0202
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

HTML Easy Notes (Beginner)

What is HTML?
HTML stands for Hyper Text Markup Language. It is used to create the structure of a website.
HTML is not a programming language. It is a markup language.

Why HTML is used?


• To create web pages

• To add text, images, links, tables and forms

• To build the basic structure of a website

Basic HTML Structure


<html>
<head> Page information </head>
<body> Visible content </body>
</html>

Common HTML Tags


• <h1> to <h6> : Headings

• <p> : Paragraph

• <a> : Link

• <img> : Image

• <br> : Line break

HTML Lists
• Ordered List <ol>

• Unordered List <ul>

HTML Table
Table is used to show data in rows and columns. Tags: <table>, <tr>, <td>, <th>

HTML Form
Forms are used to collect user input. Tags: <form>, <input>, <label>, <button>

Conclusion
HTML is the first step to learn web development. After HTML, you should learn CSS and
JavaScript.

You might also like