Hello does anyone know how to make a html code like google adscense but vertical not horizontal for instance hello my name is my name is i would like 6 rows and centered. does anyone know the html code for this. and not a css format thanks mike
Do you mean you want your text to look vertical? If so, just use <br> I'm not sure what you are looking for, could you be a bit more specific or even use images?
hello yes i would like my text vertical like google adsense ads are here is a example header description link i would like 6 in a row. if you know how can you give me the code please
<html> <head> </head> <body> <p> line 1<br> line 2<br> line 3<br> line 4<br> line 5<br> line 6<br> </p> </body> </html> PHP:
Maybe im explaining it wrong sorry im a newbie and im trying to figure out how to code. what im trying to do is make adds on my site just like google adscense but verticle i hope that explains better
<html> <head> </head> <body> <table border="0" cellspacing="15" cellpadding="10"> <td> text<br> text<br> text<br> text<br> text<br> text<br> </td> <td> text<br> text<br> text<br> text<br> text<br> text<br> </td> <td> text<br> text<br> text<br> text<br> text<br> text<br> </td> <td> text<br> text<br> text<br> text<br> text<br> text<br> </td> <td> text<br> text<br> text<br> text<br> text<br> text<br> </td> <td> text<br> text<br> text<br> text<br> text<br> text<br> </td> </table> </body> </html> PHP:
Alright. There are some other methods that use table rows tags. You can also check here for a short tutorial on how to create tables: http://www.w3schools.com/HTML/html_tables.asp