Sunday 12 February 2017

HTML 5 introduction and Lesson 1

HTML 5


HTML5 is the latest and most enhanced version of HTML.Technically, HTML is not a programming language, but rather a mark up language.
Audience.
This tutorial has been designed for beginners in HTML5 providing the basic to advanced concepts of the subject.
Prerequisites

Before starting this tutorial you should be aware of the basic understanding of HTML and its tags
Execute HTML5 Online.


You do not need to have your own environment to start learning HTML5 programming! We have set up an on-line compiler for you that can be used to compile and execute the programs on-line.
For most of the examples available in this tutorial, you will find a Try it option at the top right corner of the code box. Use it to verify the programs and check the outcome with different options. Feel free to modify any example and execute it online.

<!DOCTYPE html>
<html>

   <head>
      <meta charset="utf-8">
      <title>CHILDLIKE GIRL</title>
   </head>
   
   <body>   
  
      <header role="banner">
         <h1>HTML5 Document Structure Example</h1>
         <p>This page should be tried in safari, chrome or Mozila.</p>
      </header>
     
      <footer>
         <p>Created by <a href="http://tutorialspoint.com/">Tutorials Point</a></p>
      </footer>
     
   </body>  
</html> 

NOTE:Wait for next Lesson.

No comments:

Post a Comment