-Annie-

Intro-To-HTML-And-CSS

Aug 15th, 2016
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.69 KB | None | 0 0
  1. <!DOCTYPE>
  2. <html>
  3.     <header>
  4.         <title> Shadows and Stilization Example </title>
  5.     <body>
  6.         <h1 style="
  7.         text-decoration: line-through;
  8.         text-shadow: 5px 50px 7px #ff0000;
  9.         color: blue;
  10.         margin-bottom: 85px;">
  11.         Hello </h2>
  12.  
  13.         <h2 style="
  14.         text-decoration: underline;
  15.         text-shadow: 12px 27px 4px #cc0066;
  16.         color: #cc0066;
  17.         margin-bottom: 50px;">
  18.         HTML5 </h2>
  19.  
  20.         <p style="
  21.         font-size: 20px;
  22.         color: purple;
  23.         cursor: pointer;
  24.         opacity: 0.5;">        
  25.         CSS3 </p>
  26.  
  27.         <!-- This is a comment -->
  28.  
  29.         <!-- This below is an unordered list -->
  30.  
  31.         <ul>
  32.         <li>Java</li>
  33.         <li>PHP</li>
  34.         <li>C++</li>
  35.         </ul>
  36.     </body>
  37. </html>
Advertisement
Add Comment
Please, Sign In to add comment