Question:

How do you do italic,bold,underlined writing on mypace?

by  |  earlier

0 LIKES UnLike

How do you do italic,bold,underlined writing on mypace?

 Tags:

   Report

3 ANSWERS


  1. Its called HTML

    bold: < b >

    cancel bold: < / b >

    italic: < i >

    cancel italic: < / i >

    underline: < u >

    cancel underline: < / u >

    but without any spaces


  2. <b></b>= Bold

    <i></i>= Italics

    <u></u>=Underline

    So you just put whatever words you want to have the formatting between the two sets of brackets.

  3. rather than using soon to be deprecated elements in your markup (i.e. <b> and <i>), you should use the following:

    <strong></strong> for bold text,

    <em></em> for emphasized or italic text and

    <u></u> for underlined text.

    Be careful with underlined text as users expect text that is underlined to be a link, in which case you should use:

    <a href="link/destination.html">Link</a>

    Finally, you can also use classes for styling elements like so:

    <style>

    .bold {

         font-weight: bold;

    }

    .italic {

        font-style: italic;

    }

    .underline {

        text-decoration: underline;

    }

    </style>

    <span class="bold">bold text</span>

    <span class="italic">italic text</span>

    <span class="underline">underlined text</span>

    Hope this has been useful

Question Stats

Latest activity: earlier.
This question has 3 answers.

BECOME A GUIDE

Share your knowledge and help people by answering questions.