what is the use of big tags in html
what is the use of big tags in html
Syntax
Syntax of HTML <big> tag
<big>
..
.
</big>
Example
<!DOCTYPE html>
<html>
<body>
<p> This is html paragraph text </p>
<big> This is html big tag text</big>
</body>
</html>
what is the use of big tags in html
Explain Program
Step 1]
<!DOCTYPE html>
This declare the document type.
browser that the document is written in html
Step 2 ]
<html>.... . </html>
html is the root element of the html page.
Every thing inside it is part of the webpage.
Step 3]
<head>.....</head>
head section contain metadata about the webpage information
for the browser not display on the webpage.
Step 4]
<p> This is html paragraph text </p>
<p> stand for paragraph tag.
<p> displays text as normal paragraph with default spacing and formatting.
Step 5]
<big> This is html big tag text</big>
<big> makes text slightly larger than normal text.
<big> tag obsolute in html5 not be use modern web design.
Step 6]
closing the Tag
</body>
</html>
