Advertisement
Guest User

Untitled

a guest
Mar 5th, 2010
905
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.85 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3.  
  4. <head>
  5.     <meta http-equiv='Content-Type' content='text/html; charset=UTF-8' />
  6.    
  7.     <title>Unicode Class Names</title>
  8.    
  9.     <style type="text/css">
  10.        * { margin: 0; padding: 0; }
  11.        #page-wrap { margin: 20px auto; width: 500px; }
  12.        .□ { color: red; width: 200px; height: 200px; margin: 20px 0; border: 1px solid red; }
  13.        .♫ { color: blue; }
  14.     </style>
  15. </head>
  16.  
  17. <body>
  18.  
  19.    
  20.     <div id="page-wrap">
  21.  
  22.         <h1>Unicode Class Names</h1>
  23.        
  24.         <div class="□">
  25.             I'm a square box.
  26.         </div>
  27.        
  28.         <div class="♫">
  29.             A.A. Bondy
  30.             <em>I Can See The Pines Are Dancing</em>
  31.         </div>
  32.            
  33.     </div>
  34.    
  35.    
  36. </body>
  37.  
  38. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement