Advertisement
Jaysds1

Example of a Simple HTML Page

May 28th, 2012
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.30 KB | None | 0 0
  1. <!DOCTYPE html> <!-- Doctype -->
  2. <html> <!--HTML Page-->
  3.  
  4. <body> <!--Start displaying page -->
  5. <h1>Welcome</h1> <!-- Heading for my Paragraph -->
  6. <p>Hi, this is an example of a simple web page</p> <!-- Start the paragraph -->
  7. </body> <!-- Stop displaying the page -->
  8.  
  9. </html> <!-- End of the page -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement