Advertisement
MrsMcLead

why

Feb 24th, 2014
498
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.82 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>
  4. Boxes and Text Properties
  5. </title>
  6. <style type = "css/text">
  7.  
  8. #banner{
  9.     height: 1.5 in;
  10.     width: auto;
  11.     text-align: center;
  12.     }
  13.    
  14. #textProperties{
  15.     font-family:Verdana;
  16.     font-size:14pt;
  17.     font-weight:bold;
  18.     color:orange;
  19.     background-color:blue;
  20.     text-align:center;
  21.     line-height:12pt;
  22.     text-decoration:overline;
  23.     }
  24.    
  25. .picture1{
  26.     float: left;
  27.     margin-right: 10mm;
  28.     }
  29. .picture2{
  30.     float: left;
  31.     clear: left;
  32.     }
  33. </style>
  34. </head>
  35.  
  36. <body>
  37. <div id = "banner">
  38. <h2> My Boxes </h2>
  39. </div>
  40.  
  41. <img class = picture1 src = "dogs.jpg">
  42. <img class = picture2 src = "dogs.jpg">
  43. <h3 class = textProperties>Christopher Walken Movies<h3>
  44. <ul >
  45.     <li> Balls of Fury</li>
  46.     <li>Seven Psychopaths</li>
  47.     <li>Wedding Crashers</li>
  48.     <li>Saturday Night Live!!!!!!</li>
  49. </ul>
  50.  
  51.  
  52. </body>
  53.  
  54. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement