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
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>