HTML Introduction 📌


HTML is the standard markup language. It looks like a skeleton for a website.


A simple HTML structure


<!DOCTYPE html>
    <html>
    <head>
        <title>Page title</title>
    </head>
    <body>
        <h1>My first heading</h1>
        <p>My first paragraph</p>
    </body>
    </html>
            

This is our code preview

Screen shot

Let's talk about previous example

Let's talk about How HTML Work & How we write.

HTML stands for hypertext markup language. When using HTML, we should keep in mind that every HTML element requires an opening & closing bracket. But there are some exceptions, such as [<br>, <hr>, <img>, <link>] etc. Tags like this are self-closing.

Let's discuss about the HTML history

  1. 1989 - Tim Berners-Lee invented www
  2. 1991 - Tim Berners-Lee invented HTML
  3. 1995 - HTML Working Group defined HTML 2.0
  4. 1997 - W3C Recommendation: HTML 3.2
  5. 1999 - W3C Recommendation: HTML 4.01
  6. 2000 - W3C Recommendation: XHTML 1.0
  7. 2008 - W3C HTML5 First Public Draft
  8. 2016 - W3C Candidate Recommendation: HTML 5.1