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 toget 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.
Posted by Vijay Shanker Pandey at 11:24 PM
Line breaks in html pages can be given by using <br> tag. It does not have any end tags and it can be used at any place within the body tags of the page. Inside table cells and other simple areas also we can use line break tag <br>. More than one break tags can be used to give more line breaks. In a text area if you are using any line breaks then it does not convert on its own to line breaks in html pages. As a result of this many time you will find posting by users or after the form is submitted the page get stretched horizontally without any line breaks. There are different ways to convert the line breaks in html pages, you can see php example of converting line breaks for html web pages. We will discuss here simple html line breaks and its uses.
This is line one <br>
This is line two after one line break<br>
<br>
This is line three after two line breaks<br>
The output is here
This is line one
This is line two after one line break
This is line three after two line breaks
Posted by Vijay Shanker Pandey at 11:22 PM
<!-- FREE SLIDESHOW CODE (Moving movie reel)-->
<!-- put these code in the BODY section of your HTML page
1. the vaule of scrollamount=3 can be used to fix the speed of moving reel
2. The value of width="200" can be used to fix the width of reel
-->
<table width="100%" border="0" cellpadding="2" cellspacing="0" class="titlebg" >
<tr>
<td colspan="2" class="new_head_include" height="20">Broadband</td>
</tr>
<td width="100%" colspan="2" valign="middle"><marquee scrollamount=3 width="200" behavior="alternate"><table width="320"
cellpadding="0" cellspacing="0" border="0">
<td width="20%" valign="top" align="center"><a
href="http://free-webcodes.blogspot.com/" title="Sonam" ><img
src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiRPLepOMuxfW9iJVJ04u5F8p9ZUstMz7kagrsNFydqge8LVlGxtp4nvbMp7NS-T5q3owlAeSHfiFLY1lZhI35QKbjAMAvs9Q54qcRd6bn-PkD1OxpcZqLEe2Fbl7xuPkZck0ZRGCZ_AIBa/" border="1" title="Sonam"
alt="Sonam"><br><font class="link1_new_right">Sonam</a><br></font></td>
<td width="20%" valign="top" align="center"><a
href="http://free-webcodes.blogspot.com/" title="RAAJNEETI" ><img
src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi_7e1gcVsdqZX7hQTh8_jtsu3Ssd0ZumGN-GHxfz0HNOTjeZxLX8gaWpgzK9saNUpApN417PNBnchh5EFpi8lfwfJ0dp3wiuQax7Vf7bud5WW72njLSgiPSMt4PVoGQa2st6JK9iXATLOa/" border="1" title="RAAJNEETI"
alt="RAAJNEETI"><br><font class="link1_new_right">RAAJNEETI</a><br></font></td>
<td width="20%" valign="top" align="center"><a
href="http://free-webcodes.blogspot.com/" title="Sameera" ><img
src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiWIYIh2eEq5u5ALXoDqxjpT8uyvcS68aS2b8wLaik3Jh5ylrYxilNRwJQs7kqz8Dbr_L4jKE2QeAT34fu7npANag6SLhYLZPOycsqNG5Lr8rPPKaQQcwYC-r66qGnUhymOHKXEGMzMFvLu/" border="1" title="Sameera"
alt="Sameera"><br><font class="link1_new_right">Sameera</a><br></font></td>
<td width="20%" valign="top" align="center"><a
href="http://free-webcodes.blogspot.com/" title="RED ALERT" ><img
src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgcXAIbsX-hUZW_QOw9jnvmYf1oWayeEkYWFThNK_KpPu6iYMPhKMR4J96savlqBr1DuCCY1IaiAmaXJNsSj4jn-TJ7spbUCY005vVVFQwa7MvCWm4jE2Na7YSVDWYRm1qk0iK6S-F2CGGB/" border="1" title="RED ALERT" alt="RED
ALERT"><br><font class="link1_new_right">RED ALERT</a><br></font></td>
<td width="20%" valign="top" align="center"><a
href="http://free-webcodes.blogspot.com/" title="RED" ><img
src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhjORtqWrQkSAYROpAZ27CKV93eitw5MldpvQ18BFO04TR7y2ef18lWawPxRmVKvYxqsEYnnbGachjOrXKfwvquByjPM3HdTnQ4xrcNhXhFQTwAGZhJn7u-80zGig6a7yvgj4VDCfJwFDhv/" border="1" title="RED" alt="RED"><br><font
class="link1_new_right">RED</a><br></font></td>
</tr>
</td>
</table>
</marquee>
<tr><td colspan="2" align="right" valign="middle"><a href="http://htmlfreecodes.blogspot.com/"
class='link1_new_right'><b>more...</b></a> </td></tr>
</table>
Posted by Vijay Shanker Pandey at 10:21 PM