answersLogoWhite

0

What is b in HTML?

Updated: 8/11/2023
User Avatar

Wiki User

14y ago

Best Answer

The b tag makes text bold.

For example if you give the below code in your HTML page

This is a sample text and this part alone would be displayed in Bold. The rest would be normal

The output would be:

This is a sample text and this part alone would be displayed in Bold. The rest would be normal

User Avatar

Wiki User

14y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

12y ago

B represents Bold. It is the tag used to bold things.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is b in HTML?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What are different tags of HTML in bold?

In the Html the bold tag is used to bold the sentence..... Ex: <b>xxxx</b>


What is the difference in HTML 4 and HTML 5?

Unlike HTML 4 you cannot do these things in HTML 5: - using attributes without double-quotation like <font face=tahoma> instead of <font face="tahoma"> - Closing tags wrong <b><i>test</b></i> instead of <b><i>test</i></b> - Special Tags Closing <br> instead of <br />


How will you make certain piece of text bold-faced in HTML?

For HTML, the code would be <b>(insert word here without parenthases)</b>


What is the opening and closing tag for bold command in HTML?

<b>example</b>


Why won't this HTML work?

Obviously, you will not get an answer specific to your situation, because you did not supply any HTML code. However, a very common problem with HTML not displaying properly is missing or malformed tags. If you have a <b> tag with out a </b> tag, all text after the <b> will be in bold, even if that was not your intent.


How do you make bold letters in HTML?

Use Bold tag <b> Eg: <b> text </b>


B tags and font tags are used in?

HTML style


What is function of HTML code?

HTML code sends instructions to a browser defining the format of the page. For example, you can use the <b></b> tags to tell the browser to display something in bold text.


What is benefits of HTML?

HTML is not a software application, it is a set of formatting rules. Many software programs can interpret HTML code and format documents based on HTML tags, such as <b></b> to tell a browser to show bold text.


How do you write HTML Code?

You write in HTML by using a variety of codes such as <HTML><B><BR><UL><Color> ect, to tell the internet browser what to display, HTML coding is a way of getting the browser to display what you want it to, and where you want it to be placed.


What is the code for bold in HTML?

Technically speaking, the HTML code to guarantee that text will be bold is the bold-faced tag: <b>Bold Text Here</b> The bold-faced tag is available in HTML 4 and 5, but was deprecated in XHTML. The tag isn't semantic. If you want a more semantic solution (or if you're in XHTML) you'll want to use the <strong> tag. It works exactly the same way, and most browsers display <strong>Text</strong> as bold by default. However, to ensure that the strong tag remains bold, you also have to add a definition to your CSS. strong {font-weight: bold;}


How do you compute the nth Fibonacci number using VBScript?

<html> <body> <script type="text/vbscript"> Dim a, b, c, n, nth a = 0 b = 1 n = Cint(InputBox("Enter the value of ""n""")) For nth = 1 to n Step 1 Document.Write(b&"<br/>") c = a + b a = b b = c Next </script> </body> </html>