Difference between revisions of "HTML Basics"
From All n One's bxp software Wixi
Philip Lacey (talk | contribs) |
Philip Lacey (talk | contribs) |
||
| 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: | ||
Revision as of 11:12, 1 August 2013
- To make bold text, do the following:
- Enter <b> before the text.
- Enter the text
- 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:
- Enter <i> before the text.
- Enter the text
- 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:
- 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