बहुत जल्द सभी नोट्स अपलोड होगा
Posted by admin on 2022-10-29 21:34:32 | Last Updated by admin on 2024-10-12 03:17:32
Share: Facebook | Twitter | Whatsapp | Linkedin Visits: 233
HTML is a markup language
for describing web
documents (web pages).
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
DOCTYPE= The DOCTYPE declaration
defines the document type to be HTML
<html> = The text
between <html> and </html> describes an
HTML document
<head>= The text between <head> and </head> provides
information about the document
<title>= The text between <title> and </title> provides a
title for the document
<body> = The text between <body> and </body> describes
the visible page content
<h1> = The text between <h1> and </h1> describes a
heading
<p>
= The text between <p> and </p> describes a
paragraph
HTML Tag
HTML tags are keywords (tag names)
surrounded by angle brackets:
<tagname>content</tagname>