Welcome to HTML Basics
HTML stands for HyperText Markup Language. It is used to create the structure of web pages. In this tutorial, you will learn about different HTML elements and how to use them effectively.
1. Headings
HTML provides six levels of headings, from <h1> to <h6>.
This is Heading 1
This is Heading 2
This is Heading 3
2. Paragraphs
Paragraphs are defined with the <p> tag:
This is an example of a paragraph in HTML. It is used to display blocks of text.
3. Lists
You can create ordered and unordered lists:
Unordered List:
- Item 1
- Item 2
- Item 3
Ordered List:
- First Item
- Second Item
- Third Item
4. Links
Links are created with the <a> tag:
Visit Example.com for more information.
5. Images
Images can be added using the <img> tag:
6. Tables
Tables are used to organize data:
| Name | Age | City |
|---|---|---|
| John Doe | 30 | New York |
| Jane Smith | 25 | Los Angeles |
| Mike Johnson | 35 | Chicago |
Conclusion
HTML is a fundamental language for web development. By mastering HTML, you will have a solid foundation for creating web pages and applications. Start practicing by creating your own HTML pages!
Comments
Post a Comment