How do you keep parts colored in photofiltre?

How to keep certain parts of text bold and underlined in html format?

  • How do i keep only certain parts of the text that i added to html code for box text ...underlined and bold ?? only certain parts of the text ?

  • Answer:

    codes: <b> </b> for bold <u> </u> for underlined

sweetpea... at Yahoo! Answers Visit the source

Was this solution helpful to you?

Other answers

<b> this will be bold</b> <b><u>this will be bold and underlined</b></u>

Scotty H

<b>Text you cant in bold here.</b> <u>Text you want underlined here.</u> <b><u>Text you want underlined and in bold here.</b></u>

Edo

You have to use the end tags, like </b> I learned a lot of basic HTML on this site http://blooberry.com/indexdot/html/index.html

Sarah Smile

Deepends. The newest standards in html ask that for bold text you use <strong> bold text</strong> <b> and <u> are deprecated. You could also specify it using CSS (put the following code inside the style part in the head section, or inside an extrenal CSS file. .bolded{font-weight: bold;} .underlined{text-decoration: underline;} and when you wish to use it, you just put something like <p class="bolded"> blah blah blah</p> respectively <p class="underlined">blah blah blah</p> You an apply the css classes to other tags as well (a, div, ...)

Vera

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.