What is HTML?
HTML is a language for describing web pages. HTML stands fro Hyper Text Markup Language. HTML is not a programming language, it is a markup language. Markup language is a set of markup tags all the tags are describe page content.
We will learn HTML step by step.
Html tags
Html markup tags are mainly called HTML tags.
start and end tags are also called opening tags and closing tags.
HTML tags are keyword (tag name) Surrounded by angle brackets like
<html>
HTML tag come in pair like
<html> and
</html>
the first tag in a pair is the start tag and the second tag is the end tag.
the end tag is written like the start tag with the forword slash before the tag name.
Use
Notepad++ software for using HTML
Example
<!DOCTYPE html>
<html>
<body>
<h1>Welcome to learn html online</h1>
<p> learn html and css online</p>
</body>
</html>
the text between <html> describe the webpage.
the text between <body> is visible page content.
the text between <h1> is display heading.
the text between <p> is display as Paragraph.
Note:- <!DOCTYPE html> use for the latest Html 5.