I want the word "WEST" to the the left side of the window and word "EAST" on the right side, with both words on the same line. Seems like the code should be...
Code:
<html>
<head>
<title></title>
</head>
<body>
<span style="text-align:left;">WEST</span><span style="text-align:right;">EAST</span>
</body>
</html>
But they appear as "WESTEAST" on the left side.
Obviously I have not learned much about css.
|