It stands for Bold. It is used to bold text in a web page.
The first tag you use when developing an HTML document is the tag. The first tag you use for the main content of your page is the tag. is the tag that marks the top of an HTML page. The minimum required first like is , which starts the definition of the page content.
The frontslash tag. For example, here it is used in the bold tag. <b>Bold text</b>
<b>example</b>
In the Html the bold tag is used to bold the sentence..... Ex: <b>xxxx</b>
The HTML tag is called the "anchor" tag.
The first tag you use when developing an HTML document is the tag. The first tag you use for the main content of your page is the tag. is the tag that marks the top of an HTML page. The minimum required first like is , which starts the definition of the page content.
In XHTML, you can use the <strong> tag, which by default makes it bold in all major browsers. You can also use any other tag you feel like styling for boldness, such as <span class="bold"> <strong>Bold Text</strong> Or <span class="bold">Bold Text</span> With the CSS rule strong, span.bold {font-weight:bold;} In HTML 4 and HTML5, you have the <b> tag, which makes things bold by default. In HTML 4, this is by definition. In HTML 5, you still want to include the CSS, as the <b> tag is NOT bold by definition <b>Bold Text</b> CSS rule: b {font-weight:bold;} The <strong> tag will also work in HTML5.
The frontslash tag. For example, here it is used in the bold tag. <b>Bold text</b>
<b>example</b>
In the Html the bold tag is used to bold the sentence..... Ex: <b>xxxx</b>
Use Bold tag <b> Eg: <b> text </b>
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.
The HTML tag is called the "anchor" tag.
The tag is used to make bold text.Example: Hello World!Will result in: Hello World!
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;}
It bolds text, so it has the exact same effect as the B tag does.
html