What is HTML?Guide for new learners
HTML is the markup language for creating Web pages.

Do you have similar website/ Product?
Show in this page just for only
$2 (for a month)

0/60
0/180
HTML stands for Hyper Text Markup Language.It describes the structure of Web pages using markup. HTML elements are the building blocks of HTML pages
and they are represented by tags.
The <!DOCTYPE html> is the declaration that defines this document to be HTML5
HTML tags label pieces of content such as "heading", "paragraph", "table"
It doesn't display the HTML tags on the browsers but use them to render the content of the page.
Example of a HTML Document:
<!DOCTYPE html> <html> <head> <title> My first webpage</title> </head> <body> <h1>Heading of my 1st wepage</h1> <p>This is my first paragraph of web page </p> </body> </html> |
The <!DOCTYPE html> is the declaration that defines this document to be HTML5
The <html>element is the root element of an HTML page
The<head> element contains meta information about the document
The <title> element contains the title of the page
The <body> element consist of all the visible contents of web page.
<h1> element defines the large heading.
The<p> defines the paragraph in web page.
CONTINUE READING
Learning
Ayesha
Tech writer at newsandstory