Announcement


Hello everyone! I will not talk much, but what I mean is "you will love it." So enjoy the free website that is made for those who are a beginner and those in the middle and experts in HTML (Hyper Text Markup Language). Grab your free HTML codes here! Everything from the basic codes of HTML, cood source codes, including free cursor codes!

You can copy and paste these codes directly into your website, and in most cases, your MySpace page.When you begin designing your HTML web pages, you may find that many HTML courses fall short when it comes to providing you with special effect HTML code and advice.

HTML Blank Space and line break

|

Many times we have to use white space in our html code to place objects or text in an appropriate place. This is very simple html. We will use our menu system to achieve desire location.

Link1|Link2|Link3|link4



Now let us add one blank space   before and after each | to give some blank space.


Link1 | Link2 
|  Link3 | link4



To add one more blank space we have to use   before and after the | 
to place one more blank space. 

Link1 |  Link2   |   Link3  |  link4


Here is the code of the above line

Link1 |  Link2   |  
Link3  |  link4

See the use of     to
get blank space.

By using padding

This line starts after some blank space at left, here is the code.

<span style="padding-left:20px">This line starts after some blank space at left</span>

To get a blank line break we can use <br>
tag
in html.

0 comments: