Difference between revisions of "HTML Basics"

From All n One's bxp software Wixi

Jump to: navigation, search
 
(2 intermediate revisions by the same user not shown)
Line 24: Line 24:
 
*Once you have entered that code, the text should look like this:
 
*Once you have entered that code, the text should look like this:
 
<i>text</i>
 
<i>text</i>
 
  
 
*To make a line break, do the following:
 
*To make a line break, do the following:
Line 36: Line 35:
 
text<br>More text
 
text<br>More text
 
</div>
 
</div>
 +
 +
 +
[[Category:Topic:Key Concept]]
 +

Latest revision as of 23:14, 9 November 2014

  • To make bold text, do the following:
  1. Enter <b> before the text.
  2. Enter the text
  3. Enter </b> after the text.
  • Overall, your code should look like this:

<b>text</b>

  • Once you have entered that code, the text should look like this:

text

  • To make text italic, do the following:
  1. Enter <i> before the text.
  2. Enter the text
  3. Enter </i> after the text.
  • Overall, your code should look like this:

<i>text</i>

  • Once you have entered that code, the text should look like this:

text

  • To make a line break, do the following:
  1. Enter <br> after the text.
  • Overall, your code should look like this:

text<br>More text

  • Once you have entered that code, the text should look like this:

text
More text