Basic HTML Quick Reference


SUBMITTED BY: Guest

DATE: Nov. 30, 2013, 8:43 a.m.

FORMAT: Text only

SIZE: 529 Bytes

HITS: 879

  1. Remember to save all files with .html after the title, they can be opened with any web browser.
  2. Basic HTML Structure
  3. <html>
  4. <head>
  5. <title>website title</title>
  6. </head>
  7. <body>
  8. content goes here
  9. </body>
  10. </html>
  11. Formating
  12. This goes inbetween the <body> elements
  13. <h1> ... </h1> Heading (Size = h1-h6, h1 being the biggest)
  14. <p> ... </p> Paragraph
  15. <b> ... </b> Bold Text
  16. <a href="url"> Name of link </a> Link (eg. <a href=html://www.google.com>Google</a>)

comments powered by Disqus