Difference between revisions of "HTML Basics"

From All n One's bxp software Wixi

Jump to: navigation, search
(Created page with "To make a sentence bold  put <b> at the start of the sentence and </b> at the end of the sentence Example : <b> Your sentence goes here </b> To make a sentence Italics ...")
 
Line 1: Line 1:
To make a sentence bold  put <b> at the start of the sentence and </b> at the end of the sentence
 
  
Example : <b> Your sentence goes here </b>
+
<div style="text-align: left;">
 +
*To make bold text, do the following:
  
To make a sentence Italics  put <i> at the start of the sentence and </i> at the end of the sentence
+
#Enter '''<nowiki><b></nowiki>''' before the text.
 +
#Enter the text
 +
#Enter '''<nowiki></b></nowiki>''' after the text.
  
Example : <i> Your sentence goes here </i>
+
*Overall, your code should look like this:
 +
'''<nowiki><b>text</b></nowiki>'''
  
To make a sentence Go to the next line  put </br></br> at the end of the sentence
+
*Once you have entered that code, the text should look like this:
 +
<b>text</b>
  
Example : Your sentence goes here </br></br> Your next sentence
+
*To make text italic, do the following:
 +
 
 +
#Enter '''<nowiki><i></nowiki>''' before the text.
 +
#Enter the text
 +
#Enter '''<nowiki></i></nowiki>''' after the text.
 +
 
 +
*Overall, your code should look like this:
 +
'''<nowiki><i>text</i></nowiki>'''
 +
 
 +
*Once you have entered that code, the text should look like this:
 +
<i>text</i>
 +
 
 +
 
 +
*To make a line break, do the following:
 +
 
 +
#Enter '''<nowiki><br></nowiki>''' after the text.
 +
 
 +
*Overall, your code should look like this:
 +
'''<nowiki>text<br>More text</nowiki>'''
 +
 
 +
*Once you have entered that code, the text should look like this:
 +
text<br>More text
 +
</div>

Revision as of 11:11, 1 August 2013

  • 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