HTML is a very quite easy understanding programming. All you need to know is its "open" and "close" format. For example, to open the HTML, we need to initial it by <html> then start our programming. After we complete our program, </html> is needed to end it.
Next, to put a sentence arrange in center, using <center> as its opening and </center> as its ending. For example,
Code: Hello World1<center>Hello World2</center>Hello World3
Display :
Hello World1(no affected)
Below are some useful HTML code and its example
1. Create a Hyperlink:
Code : <a href="website">Display Name</a>
Example: <a href="http://xaivierchia.blogspot.com/">® Main Page ®</a>
Display : ® Main Page ®
2. Create a Hyperlink to open it in the new tab. It is very useful to avoid visitors to be alternate to other website unconciously.
Code: <a href="website" target="_blank">Display Name</a>
Example: <a href="http://xaivierchia.blogspot.com/" target="_blank">® Main Page ®</a>
Display : ® Main Page ®
3. Create a email link so visitor can email to you by a click.
Code: <a href="mailto:email" target="_blank">Display Name</a>
Example: <a href="mailto:respect_exist@yahoo.co.uk" target="_blank">email</a>
Display : email
Some exception here where an "open" and "close" is not used.
1. Put a space
Code:
Example: Hi HI HI HI HI HI HI
Display: Hi HI HIHIHI HIHI
2. Enter to next line
Code: <br/>
Example: HI<br/>HIHI<br/>HIHIHIHI<br/><br/>HIHI
Display:
HI
HIHI
HIHIHIHI
HIHI
3. Horizontal line
Code: <hr>
Example: Up<hr>down
Display:
Up
down
4. Subscript which makes the text below the normal line
Code: <sub> </sub>
Example: <sub>UP</sub>DOWN
Display: UPDOWN
5. Superscript which makes the text appear above the normal text
Code: <sup> </sup>
Example: <sup>UP</sup>DOWN
Display: UPDOWN
6.Blockquote shift text five spaces to right side
Code: <blockquote></blockquote>
Example:
11111
<blockquote>
11111
</blockquote>
11111
Display:
11111
1111111111