HTML (Hyper Text Markup Language)
- HTML stands for Hyper Text Markup Language
- HTML is a Markup Language it means set of markup Tags
- HTML describe document content
- HTML tags contained by HTML documents
- HTML document is also contains HTML Web Pages
- HTML documents are keyword and their structure will be like <html></html>
- HTML describes <html> for starting tag and </html> for ending tag
- HTML tags come in pairs like <html></html>
- HTML defines starting tags as <html> and ending tags as </html>
<!Doctype html>
<html>
<body>
<b> My first sentence in Bold.</b>
<ul>My first sentence in Underline.</ul>
</body>
</html>
HTML result
| HTML Sample Code |
| HTML Sample Result |