answersLogoWhite

0

You can use <b> and </b> tags to do it.

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

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.


What typically displays text as bold and center aligned?

The &lt;B&gt; &lt;/B&gt; tag is used to display text in Bold &lt;Center&gt; &lt;/Center&gt; tag is used to center align text.


What is the definition of B tag in HTML?

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


What does the Strong Tag do?

The Tag The text between these tags will be strongThe strong tag is another way to end up with bold text.


What is b in HTML?

The b tag makes text bold.For example if you give the below code in your HTML pageThis is a sample text and this part alone would be displayed in Bold. The rest would be normalThe output would be:This is a sample text and this part alone would be displayed in Bold. The rest would be normal


What character is used to indicate an end tag in HTML?

The frontslash tag. For example, here it is used in the bold tag. &lt;b&gt;Bold text&lt;/b&gt;


What is the correct tag to render text in italics?

The HTML 5 specification recommends using &lt;strong&gt; for bold text and &lt;em&gt; for italicised text. In HTML 4.01 &lt;strong&gt; defines both strong and emphasised text; for purely bold text, use &lt;b&gt; instead (in HTML 5, &lt;b&gt; and &lt;strong&gt; are equivalent).


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.


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 get bold text font in deviantART?

According to the DeviantArt FAQ, you can use the normal HTML tags for italic. That is either the emphasis tag, or the italic tag.The italic tag works like this: This text would be italicThe emphasis tag works like this: This text would be italicBoth of these tags would produce the same results on your DeviantArt post. That would look like this:This text would be italic


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 tag do you use to embolden text?

You could use &lt;b&gt; i.e. bold tag but it is depreciated. Now you use the tag of style and font-thickness.