Introduction
Writing in HTML can be a daunting task, especially for beginners. However, with patience and proper guidance, you can master this language and create attractive and functional web pages.
Basic HTML Tags
Paragraph Tag
The paragraph tag <p> is one of the most commonly used tags in html. It represents a paragraph in text.
Heading Tag
HTML headings are defined with the <h1> to <h6> tags. H1 is the biggest and most important. H6 is the smallest.
List Tag
HTML lists are used to present list of information in well formed and semantic way. There are three types of lists in HTML.
Unordered HTML List
- Coffee
- Tea
- Milk
Ordered HTML List
- Coffee
- Tea
- Milk
Basic HTML Page Structure
A basic HTML document structure includes the <html>, <head>, and <body> tags.
Conclusion
Mastering HTML is the first step towards becoming a web developer. Once you understand the basics, you can then move on to learning CSS and JavaScript.