answersLogoWhite

0

Use <b>Your Text Here</b>

OR <strong>Your text here</strong>

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

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

For HTML, the code would be &lt;b&gt;(insert word here without parenthases)&lt;/b&gt;


What are different tags of HTML in bold?

In the Html the bold tag is used to bold the sentence..... Ex: &lt;b&gt;xxxx&lt;/b&gt;


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: &lt;b&gt;Bold Text Here&lt;/b&gt; 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 &lt;strong&gt; tag. It works exactly the same way, and most browsers display &lt;strong&gt;Text&lt;/strong&gt; 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;}


What does a bold-faced word mean when you see it in a nonfiction?

Usually, when you see a bold-faced word in a non-fiction book, it means that there is a glossary in the back of the book where you can find the definition of the bold-faced words.


What is the definition of B tag in HTML?

It stands for Bold. It is used to bold text in a web page.


What can bold style text be used to indicate?

Yes, bold is an HTML text feature. You use the &lt;b&gt; tag to display bold text.


How do you make bold letters in HTML?

Use Bold tag &lt;b&gt; Eg: &lt;b&gt; text &lt;/b&gt;


How do you make bold a different color in HTML?

&lt;strong style="color: red;"&gt;Red Bold&lt;/strong&gt;


How do you bold text in HTML?

In XHTML, you can use the &lt;strong&gt; 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 &lt;span class="bold"&gt; &lt;strong&gt;Bold Text&lt;/strong&gt; Or &lt;span class="bold"&gt;Bold Text&lt;/span&gt; With the CSS rule strong, span.bold {font-weight:bold;} In HTML 4 and HTML5, you have the &lt;b&gt; 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 &lt;b&gt; tag is NOT bold by definition &lt;b&gt;Bold Text&lt;/b&gt; CSS rule: b {font-weight:bold;} The &lt;strong&gt; tag will also work in HTML5.


What are the HTML codes for effects?

You can use for bold, for example, but it is recommended that you use CSS adding styles and formatting to your HTML.


What are HTML translators?

That depends, it may be HTML script "translated" into normal text, as BBCode where you can make bold text, and it can be HTML which is translated into for example PHP with echo tags.


Why use HTML codes?

You use HTML codes to tell the browser how to display your content. For example, if you want to display THIS in bold, you would send the following HTML code to the browser: THIS .