Translate

ads

8 May 2019

What is HTML?

What is HTML?



HTML is that the normal nomenclature for making websites.


  • 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


1 comment: