Basic HTML Problems

liunx

Guest
Hello Everyone!<br />
<br />
Here are my questions,<br />
<br />
1. How do I make it so that when a cursor is moved over a picture text appears?<br />
<br />
2. How do I make a colored line and control the width and length?<br />
<br />
3. How do I space text? More specifically, I need to know how to space text from the left side, the text is far to close to the left side of the screen. Also, I need to space out some words.<br />
<br />
Thanks in Advance!<!--content-->Try this:<br />
<br />
1. Need more info - text appears where the pic was or text appears in another location?<br />
<br />
2. <HR WIDTH="200" SIZE="5" COLOR="#000088">. This will create a horizontal line.<br />
<br />
3. To space text, use the non-breaking space entity "&nbsp;".<br />
<br />
Is this useful?<!--content-->Ugh ... <br />
<br />
Non-breaking space entity ... "<ampersand>nbsp<semicolon>".<!--content-->Hey Sgt Web, if you want to write this:<br />
&ampnbsp;<br />
<br />
just type this:<br />
<br />
&ampampnbsp;<!--content-->#3: Use css -- that's what it's for. This, for example, will move the text 10 pixels to the left: <span style="margin-left: 10px;">Text</span><!--content-->
 
Back
Top