HTML History
Year Version1989 Tim Berners-Lee invented www
1991 Tim Berners-Lee invented HTML
1993 Dave Raggett drafted HTML+
1995 HTML Working Group defined HTML 2.0
1997 W3C Recommendation: HTML 3.2
1999 W3C Recommendation: HTML 4.01
2000 W3C Recommendation: XHTML 1.0
2008 WHATWG HTML5 First Public Draft
2012 WHATWG HTML5 Living Standard
2014 W3C Recommendaton: HTML5
2016 W3C Candidate Recommendation: HTML5.1
2017 W3C Recommendation: HTML5.1 2nd Edition
2017 W3C Recommendation: HTML5.2
What is HTML?
HTML stands for LHyper Text Markup Language
HTML is the standard markup language for creating Web pages
HTML describes the structure of a web page
HTML consists of a series of elements
HTML elements tell the browser how to display the content
HTML elements label pieces of content such as "this is a heading", "this is a paragraph", "this is a link", etc.
What is HTML5?
HTML5 is the latest version of Hypertext Markup Language, the structure of a web page with web 2.0
Basic Tags
- <!--Comment-->
- <!DOCTYPE>
- <html>
- <head>
- <title>
- <body>
- <h1>to <h6>
- <p>
- <br>
- <hr>
- <a>
- <link>
- <meta>
- <style>
Semantic Tags
- <div>
- <span>
- <header>
- <nav>
- <main>
- <section>
- <article>
- <aside>
- <details>
- <dialog>
- <summary>
- <data>
- <footer>
List Tags
- <ul>
- <ol>
- <li>
- <dir>
- <dl>
- <dt>
- <dd>
Image Tags
- <img>
- <map>
- <area>
- <canvas>
- <figcaption>
- <figure>
- <picture>
- <svg>
Audio & Video Tags
- <audio>
- <video>
- <source>
- <track>
Forms and Input Tags
- <form>
- <input>
- <textarea>
- <button>
- <select>
- <optgroup>
- <option>
- <label>
- <fieldset>
- <legend>
- <datalist>
- <output>
Comments
Post a Comment