Advertisement
bolo17

HTML Basic Examples

Mar 12th, 2020
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.41 KB | None | 0 0
  1. HTML Basic Examples
  2. HTML Documents
  3. All HTML documents must start with a document type declaration: <!DOCTYPE html>.
  4.  
  5. The HTML document itself begins with <html> and ends with </html>.
  6.  
  7. The visible part of the HTML document is between <body> and </body>.
  8.  
  9. Example
  10. <!DOCTYPE html>
  11. <html>
  12. <body>
  13.  
  14. <h1>My First Heading</h1>
  15. <p>My first paragraph.</p>
  16.  
  17. </body>
  18. </html>
  19. get link here:http://exe.io/K9TuSh
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement