What is HTML?
- HTML stands for Hyper Text nomenclature
- HTML describes the structure of websites mistreatment markup
- HTML parts square measure the building blocks of markup language pages
- HTML parts square measure described by tags
- HTML tags label items of content like "heading", "paragraph", "table", and so on
- Browsers don't show the markup language tags, however use them to render the content of the page
A Simple markup language Document
<!DOCTYPE html>
<html>
<head>
<title>sayed 360Page Title</title>
</head>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
Example Explained
- The <!DOCTYPE html> declaration defines this document to be HTML5
- The <html> component is that the root component of associate hypertext markup language page
- The <head> component contains meta info regarding the document
- The <title> component specifies a title for the document
- The <body> component contains the visible page content
- The component defines an oversized heading
- The component defines a paragraph
nice post bro...
ReplyDelete