PasteSite is open to the public, but with limited features. Register to be able to modify access rights, track your pastes and more...
If you prefer reading light text on a dark background to dark text on a light background, then you might want to try the dark theme.
"Untitled" by Banjo [HTML]Actions: |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <title>QuixDraw - The better way to con</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <style type="text/css"> body { background-color: #f1f1f1; } #container { width: 90%; background-color: #ffffff; border: 1px solid #999999; margin: 0 auto; padding: 10px; } h1 { margin: 0; padding: 0; height: 112px; background: #ffffff url(images/logo.png) no-repeat; } </style> </head> <body> <div id="container"> <h1><!--SOME STUFF HERE :O--></h1> <p> Start text here </p> </div> </body> </html> |