HTML6

HTML6 without Javascript

The HTML6 concept is going for Responsive single page apps without loading the JavaScript.

for more detail go to below links.

https://lists.w3.org/Archives/Public/public-whatwg-archive/2015Mar/0071.html
http://jaxenter.com/html6-proposal-for-single-page-apps-without-javascript-causes-scandal-115919.html

The HTML6 code-sample look like
01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//Example HTML6 without JavaScript
<DOCTYPE html>
<HTML LANG=“en”>
<HEAD>
<FIXTURES lang=“xml”>
    <model class=“MyCSSCalss”>
        <resp stat=“satatusOK">
            <article label=“lblOne” id=“1lb1">
                <headline>This is the Big News</headline>
                <body> This is body area</body>
            </article>
        </resp>
    </model>
</FIXTURES>
</HEAD>
<BODY>
    <MENU class=“MyController”>
        <A href=“#” model=“MyCSSCalss">Click here to replace the above by differnt</A>
    </MENU>
    <MAIN class=“MyViewerClass”>
        <ARTICLE class=“MyCenterClass">
            <H1 model=“MyCSSCalss.resp.article(label=’lblOne’).headline” />
        </ARTICLE>
    </MAIN>
</BODY>
</HTML>
//Example HTML6 without JavaScript

<DOCTYPE html>
<HTML LANG=“en”>
<HEAD>
<FIXTURES lang=“xml”>
    <model class=“MyCSSCalss”>
        <resp stat=“satatusOK">
            <article label=“lblOne” id=“1lb1">
                <headline>This is the Big News</headline>
                <body> This is body area</body>
            </article>
        </resp>
    </model>
</FIXTURES>
</HEAD>
<BODY>
    <MENU class=“MyController”>
        <A href=“#” model=“MyCSSCalss">Click here to replace the above by differnt</A>
    </MENU>
    <MAIN class=“MyViewerClass”>
        <ARTICLE class=“MyCenterClass">
            <H1 model=“MyCSSCalss.resp.article(label=’lblOne’).headline” />
        </ARTICLE>
    </MAIN>
</BODY>
</HTML>
ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

www.code-sample.com/. Powered by Blogger.
^