the basics of the HTML

What are the basics of the HTML?


The preferred markup language for documents intended to be viewed in a web browser is HTML, or HyperText Markup Language. Technologies like Cascading Style Sheets and scripting languages like JavaScript can help.

The basics of HTML

All HTML documents must start with a document type declaration: <!DOCTYPE html>

  1. Start and end of the document : <html>… </html>
  2. Header size start from 1 to 6 (Large to small): <h1>  </h1>
  3. <h1>Heading 1</h1>
    <h2>Heading 2</h2>
    <h3>Heading 3</h3>
    <h4>Heading 4</h4>
    <h5>Heading 5</h5>
    <h6>Heading 6</h6>
  4. This one is for paragraph : <p>  </p>
  5. If you want to go to another line, it is called Line break: <br>  </br>
  6. This is for non-breaking space: &nbsp
  7. Strike through: <strike>  </strike>
  8. For Blod text: <strong>   </strong>
  9. For italics text: <i>  </i>
  10. If you want to Underline text: <u>  </u>
  11. To add a basic link: <a href=”link”> text </a> 
  12. To add basic image: <img src=”image”alt=”text”>
  13. As it saying it to add a table: <table>  </table>
  14. To make list of items: <li>   </li>
  15. if you want to write a quote: <blockquote>   </blockquote>
Launch Your Website 3 1

Leave a Comment

Your email address will not be published. Required fields are marked *