< b > tag is used to mark the text as
Answers
Answered by
2
Answer:
<b> tag is used to mark the text as bold.
Explanation:
HTML stands for HyperText Markup Language. It is used for the creation of web pages. It is a Markup Language and not a Programming language. HTML describes the structure of a website. HTML elements are also known as tags. HTML tells the browsers how to display the content.
Example of bolding text in HTML:
<!DOCTYPE html>
<html>
<head>
<title>Brainly</title>
</head>
<body>
<b>Brainly - The Free Learning App</b>
</body>
</html>
Where,
- <!Doctype> tag defines the document type.
- <html> tag defines the HTML document.
- <head> tag defines the information for the document.
- <title> tag defines the title of the document.
- <body> tag is defines the body of the document.
- <b> tag is used to mark the text as bold.
Tags are always enclosed in angle brackets: < >. And closing tags always proceed the element with a /.
Similar questions