Advertisement
Felanpro

HTML and CSS training

May 5th, 2016
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.08 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3.     <html>
  4.    
  5.         <head>
  6.        
  7.             <title>hey</title>
  8.            
  9.             <style>
  10.             #p1 {
  11.                 color:rgb(213, 142, 100);
  12.             }
  13.             </style>
  14.            
  15.             <style>
  16.             p.p1s {
  17.                 border: 2px solid black;
  18.                 padding: 20px;
  19.                 text-align: center;
  20.                 margin: 100px;
  21.                 background-color: yellow;
  22.                 font-family: helvetica;
  23.                 font-size: 30px;
  24.             }
  25.             </style>
  26.        
  27.         </head>
  28.        
  29.             <body style="background-color:white">
  30.                
  31.                 <a href="http://google.com">Google.com</a>
  32.                
  33.                 <img src="http://www.w3schools.com/html/w3schools.jpg" alt="hejsan bild" width="104" height="142">
  34.                
  35.                 <h1 style="color:red">VARNING</h1>
  36.                
  37.                 <p><strong>MEN VA FAN GUNNAR</strong></p>
  38.                
  39.                 <a href="javascript.html">OTHER LOCAL PAGE!</a>
  40.                
  41.                 <p id="p1">Hello world</p>
  42.                
  43.                 <p style="font-size: 200%">Hello world!</p>
  44.                
  45.                 <p style="border: 3px solid">Old man</p>
  46.                
  47.                 <p class="p1s">This is my text</p>
  48.                 <p class="p1s">This is my text</p>
  49.                 <p class="p1s">This is my text</p>
  50.                
  51.                
  52.                
  53.             </body>
  54.    
  55.     </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement