Advertisement
Guest User

index.html

a guest
Oct 15th, 2014
311
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.57 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en-US">
  3.     <head>
  4.         <title>Website</title> <!-- This sets the title of the page. !-->
  5.     </head>
  6.  
  7.     <body>
  8.         <h1 title="You found me!">Hello, world!</h1> <!-- This is the largest header. !-->
  9.         <p>How are you today?</p> <!-- This is a paragraph. !-->
  10.         <a href="index.html" title="Click me to reload the current page.">Recursion!</a> <!-- This is a link. !-->
  11.         <br/> <!-- This is a line break !-->
  12.         <img src="img/avatar.png" width="200" height="200"/> <!-- This is an image. !-->
  13.     </body>
  14. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement