Home CSS Text Create A Box To Hold Text
Search MS Office A-Z   |   Search Web Pages/ Design A-Z

Create A Box To Hold Text

<html> <head> <title>Box Elements</title> <style> body{background-color:#23238e;} .text1{border:solid;border-color:#ffffff;width:60%;background-color:#ffffcc;font-family:"comic sans ms";font-size:16px;padding:10px;} </style> </head> <body> <span class="text1">This is an example of how a box element can help to define text for a user in a web page.</span> </body> </html>