Which tag is used to create body text in HTML?
एचटीएमएल में बॉडी टेक्स्ट बनाने के लिए किस टैग का उपयोग किया जाता है?
Select one:
व
Answers
Answered by
0
Explanation:
- HTML ka pura name hyper text markup language hota hai .
- HTML me text our tag ka तालबद्ध combination kiya jata hai.
- opening tag एवं closing tag keep द्वारा यह language likhi jati hai
Answered by
0
Answer:
<BODY> tag is used to create body text in HTML.
It is used to define the main content present inside an HTML page and always enclosed within <html>tag.
Explanation:
- The <body> tag is responsible to create the document's body.
- The <body> element contains all the contents of an HTML document like headings, paragraphs, images, hyperlinks, tables, lists etc.
- Only one <body> element can be there in an HTML document.
- The <body> tag is the last child of <html> tag.
- It contains starting as well as an ending tag.
Attributes: There are many attributes in the <body> tag :
- background: Set the background image.
- bgcolor: Specify the background color of an image.
- alink: Specify the color of the active link.
- link: Specify the color of visited links.
- text: Specifies the color of the text in a document.
- vlink: Specifies the color of visited links.
- Example:
//Code to use <BODY> tag
<html>
<head>
<title>Title </title>
</head>
<body>
<h1>This is the heading portion</h1>
<p>A paragraph.</p>
</body>
</html>
To know more about HTML Tag, Click here ->
https://brainly.in/question/18624559
https://brainly.in/question/35245439
Similar questions