Friday, December 11, 2015

HTML5 Opening and Closing Tag

Well, now you are familiar with the HTML5 Dcotype declaration. This chapter will teach you the very second line and first active element... thumbnail 1 summary
Well, now you are familiar with the HTML5 Dcotype declaration. This chapter will teach you the very second line and first active element, which is <html>.

<html>

HTML is an initial element of HTML5, which tells the browser that the file is written in HTML. And then after the browser behave with the file like HTML. The complete code of a file is wrapped within theHTML Tag.
Here is the Syntax for HTML Tag
1
<html>
Below is complete syntax along with example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<html>
     
    <head>
        <title>
        Page title will go here
        </title>
    </head>
     
    <body>
    This is test page
    </body>
     
</html>

No comments

Post a Comment