on a page how do you space out the text instead of having it all like a list?
Printable View
on a page how do you space out the text instead of having it all like a list?
Just put a <br> tag in where you want the space to be e.g
Hope this helps :)HTML Code:<html>
<head>
<title></title>
</head>
<body>
<p>Hello<br>
<br>
How are you?</p>
</body>
</html>
Ok, in html
New line
or papragraphHTML Code:<br>
HTML Code:<p> test here </p>
are the most basic ways to space out text, you could also put stuff in a table, but thats usealy isnt much use if you only want new lines etc
ty peepz :)
is there a code so i can put something at the bottom? instead of putting
<br>
<br>
<br>
?????
Edit by Urges - Please dont double post - Simply edit your first one. Thanks
if your in tables, you can valign the contenst of a bit to the botton
valign="bottom"
wich is basiclu vertical align.
ty mentor :)