| <html> | |
| <head> | |
| <style> | |
| #box1 { | |
| height: 50px; | |
| width: 25px; | |
| float: left; | |
| background-color: orange; | |
| } | |
| #box2 { | |
| height: 50px; | |
| width: 25px; | |
| float: left; | |
| background-color: blue; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div id="container"> | |
| <div id="box1"></div> | |
| <div id="box2"></div> | |
| </div> | |
| </body> | |
| </html> |