Page is a not externally linkable
- WebmasterWorld
-- New To Web Development
---- vertical align text & border styles-no css code please-beginner


lostdreamer - 11:58 am on Sep 12, 2012 (gmt 0)


This should get you started on creating a tennis court.
I've thrown in a little bit of CSS so you can get used to it a bit ahead of time. (for now it is only used to set the background color)

You can simply copy paste the following into a .html file

<html>
<head>
<style>
table.court {
background-color:#267F00;
}
</style>
</head>
<body>
<table class="court" width="100%" border="1">
<tr>
<td valign="top"> Cell 1 (top) </td>
<td> Cell 2<br> Cell 2<br> Cell 2<br> </td>
<td> Cell 3 (middle) </td>
<td valign="bottom"> Cell 4 (bottom) </td>
</tr>
</table>
</body>
</html>


I would normally not recommend this website, but for first time beginners it might still be a good read:

[w3schools.com...]


Thread source:: http://www.webmasterworld.com/new_web_development/4494071.htm
Brought to you by WebmasterWorld: http://www.webmasterworld.com