What I learned about HTML 2day:

Table Of Content

Chapter No. Subject
One Structure
Two Extra Markup
Three HTML5 Layout

ChapterOne :: Structure


ChapterTwo :: Extra Markup

DOCTYPE

for HTML5 we use <!DOCTYPE html>





BLOCK ELEMENTS

     <h1> Sohaib Msalha </h1> 

    <p> Sohaib Msalha </p>

     <ul>
      <li> Science: 21 Nov - 20 Feb 2010/11   </li>
      <li> Architecture: 6 Mar - 15 May 2011  </li>
      <li> History: 29 May - 21 Aug 2011      </li>
      <li> Religion: 28 Aug - 6 Nov 2011      </li>
    </ul> 

INLINE ELEMENTS

     Some elements will always appear to continue on the same line as their 
     neighbouring elements. These are known as inline elements.
     Examples of inline elements are
     - <b>  To make Text bold, Ex <b> Hello </b>
     - <em> To make Text italic, Ex <em> Hello </em>
     - <a>
     - <img>.

BlockAndInLineElements