Advertisement
Treyzania

Barebones HTML Tutorial

Feb 3rd, 2015
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.38 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.    
  4.     <head>
  5.        
  6.         <title>This is the title</title>
  7.         <link rel="stylesheet" type="text/css" href="mysexy.css"/>
  8.        
  9.         <style>
  10.            
  11.             div.someclass4text {
  12.                 color: red;
  13.             }
  14.            
  15.         </style>
  16.        
  17.     </head>
  18.    
  19.     <body>
  20.        
  21.         <div class="someclass4text">
  22.            
  23.             <h1>This is a giant heading.</h1>
  24.             <p>A paragraph.</p>
  25.            
  26.         </div>
  27.        
  28.     </body>
  29.    
  30. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement