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.