Difficulty: Moderately Easy
Step1
Define what characteristics you desire for the text in your page. The best way to learn a language is to define a problem and find the solution. To make text bold, italics, small, large, different color, underlined. Just define what you want to do.
Step2
Begin by starting the tag with the "<"(less than) character. This character signifies to HTML that what follows is an instruction. End the instruction or code by closing the brackets with the ">"(greater than) character. What follows this character is related to what you desire to take place, for example, (less than)i(greater than) will make any text following the code tag appear in italics.
Step3
End the tag with the characters (less than) followed by a slash"/" then followed by the same instruction you used in step 2 and then close the bracket in the same way with the (greater than) character. An example would be (less than)i(greater than)
This will be in italics(less than)/i(greater than).