.html heading
.html horizontal rules
Headings are defined with the <h1> to <h6> tags.<h1>This is heading 1</h1>
<h2>This is heading 2</h2>
<h3>This is heading 3</h3>
<h4>This is heading 4</h4>
<h5>This is heading 5</h5>
<h6>This is heading 6</h6>
HTML HORIZONTAL RULES-
<hr>break in html pages
<hr>separet content
exa-
<h1> heading 1</h1>
<p>some text.</p>
<hr>
<h2>heading 2</h2>
<p> some other text.</p>
<hr>
html <head> elements
<head> tag aur <body> tag
<!DOCTYPE html>
<html>
<head>
<title>My HTML</title>
<meta charset="UTF-8">
</head>
<body>...
some important html tags-
<html> Defines the root of an HTML document
<body> Defines the document's body
<head> A container for all the head elements (title, scripts, styles, meta etc..
<h1> to <h6> Defines HTML headings
<hr> Defines a thematic change in the content

No comments:
Post a Comment