HTML full form is Hyper Text Markup Language. It is the standard markup language use for making websites and this language is easy to learn.
HTML language describe the structure of web pages. It consists of a series of elements, which tell the browser how to display the content. HTML was invented by Tim Berners-Lee in 1991. Today HTML5 is the standard version and it's supported by all modern web browsers.
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>Welcome to my first webpage</h1>
<p>My first paragraph.</p>
</body>
</html>
Try It »
An HTML element is defined by a start tag, some content, and an end tag. The start tag and end tag are enclosed in angle brackets, and the content is placed between them.
Start Tag | Content Between Tag | End Tag |
---|---|---|
<h1> | Welcome to my first webpage | </h1> |
<p> | My first paragraph. | </p> |
<br> | None | None |
<br> is HTML Elements have no content and do not have an end tag, such elements are called empty elements.