HTML5 has most definitely proven to be a transformational platform, giving abundant room to web developers to spread their wings (it rather has given them some blockbuster wings).
With its elements like <header>, <menu>, <nav>, <menuitem> and so on, it has given a new dimension to how developers go about their job of creating web apps of the highest order.
But just when you thought that HTML is going to take some time before it swings something new at us, bam, it's right here. Now HTML6 hasn't been launched per se, but the specs are well and truly in.
Delving a Little Deeper into HTML6
In its bare bones, HTML6 is composed of the standard HTML and namespaces that are structured on the XML. This is apparently a very unique combination that equips developers with a host of capabilities.
<!DOCTYPE html>
<html:html>
<html:head>
<html:title>HTML6 Code Snippet</html:title>
<html:meta type="title" value="Page Title">
<html:meta type="description" value="We present an HTML code sample with namespaces">
<html:link src="css/main.css" title="Main Styles" type="text/css">
<html:link src="js/main.js" title="Main Script" type="text/javascript">
</html:head>
<html:body>
<header>
<logo>
<html:media type="image" src="images/logo.png">
</logo>
<nav>
<html:a href="/bus">bus</a>
<html:a href="/train">Train</a>
<html:a href="/plane">Plane</a>
</nav>
</header>
<content>
<article>
<h1>Here is the article head</h1>
<h2>Here is the article sub head</h2>
<p>[...]</p>
<p>[...]</p>
</article>
<article>
<h1>Some fun!</h1>
<h2>Look closely at the media elements</h2>
<p>[...]</p>
<html:media type="video" src="vids/moving-bus.mp4" autostart controls>
<p>What a slow bus.</p>
</article>
</content>
<footer>
<copyright>This site is © to John William</copyright>
</footer>
</html:body>
</html:html>
<html:html>
<html:head>
<html:title>HTML6 Code Snippet</html:title>
<html:meta type="title" value="Page Title">
<html:meta type="description" value="We present an HTML code sample with namespaces">
<html:link src="css/main.css" title="Main Styles" type="text/css">
<html:link src="js/main.js" title="Main Script" type="text/javascript">
</html:head>
<html:body>
<header>
<logo>
<html:media type="image" src="images/logo.png">
</logo>
<nav>
<html:a href="/bus">bus</a>
<html:a href="/train">Train</a>
<html:a href="/plane">Plane</a>
</nav>
</header>
<content>
<article>
<h1>Here is the article head</h1>
<h2>Here is the article sub head</h2>
<p>[...]</p>
<p>[...]</p>
</article>
<article>
<h1>Some fun!</h1>
<h2>Look closely at the media elements</h2>
<p>[...]</p>
<html:media type="video" src="vids/moving-bus.mp4" autostart controls>
<p>What a slow bus.</p>
</article>
</content>
<footer>
<copyright>This site is © to John William</copyright>
</footer>
</html:body>
</html:html>
What's noticeable in this code are the peculiar <html:x> tags. Most essentially, these are the namespace elements and are responsible for setting off the browser events. <html:title>, for instance, helps you alter the title of the browser.
The elements in the code can be used by the developer for a host of development purposes and these bear no use for the browser at all. You can find various hooks here.
Then You Have the APIs
There are tags in APIs and they have namespaces:
<html:html>
And using the same you can create a new HTML document:
<!DOCTYPE html>
<html:html>
<!-- rest of HTML would go here -->
</html:html>
<html:html>
<!-- rest of HTML would go here -->
</html:html>
We then have the <html:head> that basically helps us with creating the head of HTML but it comprises of data that is not visible. What it does is that it fetches the data and also all the scripts that are needed for the display of content. And we are here talking about stuff like CSS, JavaScript and so on.
<!DOCTYPE html>
<html:html>
<html:head>
<!-- Head content, similar to the <html:title> tag -->
</html:head>
</html:html>
<html:html>
<html:head>
<!-- Head content, similar to the <html:title> tag -->
</html:head>
</html:html>
Then we have the <html:title> that is used by the browser for its tab bar and so on. Also, it helps in better search engine indexing of the website:
<!DOCTYPE html>
<html:html>
<html:head>
<html:title>HTML6 Spec Version 0.1</html:title>
</html:head>
</html:html>
<html:html>
<html:head>
<html:title>HTML6 Spec Version 0.1</html:title>
</html:head>
</html:html>
We then segue on to <html:meta> that is surely a transformation over the present HTML version. There can be random attributes or meta data in HTML6 and it does not depend on the meta types at all. And this can be leveraged by the developers in order to preserve content:
<!DOCTYPE html>
<html:html>
<html:head>
<html:title>HTML6 Spec Version 0.1</html:title>
<html:meta type="description" value="This is an example of HTML with namespaces">
</html:head>
</html:html>
<html:html>
<html:head>
<html:title>HTML6 Spec Version 0.1</html:title>
<html:meta type="description" value="This is an example of HTML with namespaces">
</html:head>
</html:html>
There are noticeable difference in the <html:link> element as well. It is a useful way to create a bridge between JS, CSS, favicons, RSS and the document that is being worked upon. It is defined by these attributes:
- charset: It is the character encoding
- href: It provides a link to the source file
- media: It represents the device that is being used to operate the respective item. It can either be a mobile device or a tablet
- type: It is the MIME type of the document
<!DOCTYPE html>
<html:html>
<html:head>
<html:title>HTML6 Spec Version 0.1</html:title>
<html:link src="js/main.js" title="Main Script" type="text/javascript">
</html:head>
</html:html>
<html:html>
<html:head>
<html:title>HTML6 Spec Version 0.1</html:title>
<html:link src="js/main.js" title="Main Script" type="text/javascript">
</html:head>
</html:html>
<html:media> is another noteworthy diversion from the current version. Traditionally, we expect tags like <img>, <video>, <audio>, <embed>, etc with media. With HTML6, there is no need for tag for each file type. The type attribute will be made use of:
<!DOCTYPE html>
<html:html>
<html:head>
<html:title>HTML6 Spec Version 0.1</html:title>
</html:head>
<html:body>
<!-- Image -->
<html:media src="images/logo.jpg" type="image">
<!-- Video, shows you don't "need" a type -->
<html:media src="videos/cute-cat.mov">
<!-- Some made up format, browser will ignore if it doesn't know it -->
<html:media src="misc/example.abc" type="abc">
</html:body>
</html:html>
<html:html>
<html:head>
<html:title>HTML6 Spec Version 0.1</html:title>
</html:head>
<html:body>
<!-- Image -->
<html:media src="images/logo.jpg" type="image">
<!-- Video, shows you don't "need" a type -->
<html:media src="videos/cute-cat.mov">
<!-- Some made up format, browser will ignore if it doesn't know it -->
<html:media src="misc/example.abc" type="abc">
</html:body>
</html:html>
HTML6 also introduces new changes with <form:input>. A new form input is initiated with this and how it is different from the current version that any form input which has a scope for a text entry is considered in input. To get more idea about the types of inputs, you can refer to the following list:
- text
- url
- tel
- search
- number
- datetime
- date
- month
- week
- time
- datetime-local
- textarea
- password
- file - (multiple)
The probable attributes are:
- name
- disabled
- readonly
- placeholder
- autofocus
- required
- novalidate
And for those who wish to know how they can be implemented, here is a piece of code for your consideration and clarity:
<!DOCTYPE html>
<html:html>
<html:head>
<html:title>HTML6 Spec Version 0.1</html:title>
</html:head>
<html:body>
<form:form method="post" action="/sendmail">
<!-- Simple input (defaults to text) -->
<form:input>
<!-- A new HTML6 match example -->
<form:input type="password" name="user_password">
<form:input type="password" match="user_password">
<!-- Advanced example -->
<form:input type="email" placeholder="user@site.com" autofocus required>
</form:form>
</html:body>
</html:html>
<html:html>
<html:head>
<html:title>HTML6 Spec Version 0.1</html:title>
</html:head>
<html:body>
<form:form method="post" action="/sendmail">
<!-- Simple input (defaults to text) -->
<form:input>
<!-- A new HTML6 match example -->
<form:input type="password" name="user_password">
<form:input type="password" match="user_password">
<!-- Advanced example -->
<form:input type="email" placeholder="user@site.com" autofocus required>
</form:form>
</html:body>
</html:html>
<form:select> is a way for user to choose something from the available options. Again, the possible input types are:
- select - (multiple)
- color
- calendar - (range)
- meter - (range, step)
Attributes that work for all select types are:
- name
- readonly
- disabled
- required
- autofocus
That's how we use them:
<!DOCTYPE html>
<html:html>
<html:head>
<html:title>HTML6 Spec Version 0.1</html:title>
</html:head>
<html:body>
<form:form method="post" action="/scheduler">
<!-- Normal select -->
<html:select type="select" name="favorite_color">
<!-- Calendar example -->
<html:select type="calendar" name="the_calendar" range="10/10/10-10/10/11">
</form:form>
</html:body>
</html:html>
<html:html>
<html:head>
<html:title>HTML6 Spec Version 0.1</html:title>
</html:head>
<html:body>
<form:form method="post" action="/scheduler">
<!-- Normal select -->
<html:select type="select" name="favorite_color">
<!-- Calendar example -->
<html:select type="calendar" name="the_calendar" range="10/10/10-10/10/11">
</form:form>
</html:body>
</html:html>
HTML6 is surely bringing along a pack of delights. Just make sure you tuck them in.
Ben Wilson has been into WordPress from last 5 years. His front end knowledge is creating HTML to Wordpress friendly websites. He is master in developing and customizing WordPress websites.
Subscribe For Free Updates!
*Please confirm the email sent to your inbox after clicking "Sign Up!".
Thank you for this tutorial.its really informative tutorial quinequi
ReplyDeleteNot only to read need to spreed every one.sarapresswedlog
ReplyDeleteThank you for this guidance.its really informative for all. tonarinookusama
ReplyDeleteNeed to implement in my blog.tjdljj
ReplyDeleteThank you for this guidance.its really informative for all rondavirtualdenegocios
ReplyDeletevery useful to implement in Life.oceanlawpublishing
ReplyDeleteKeep posting the articles,useful to every one.panafricanminerals
ReplyDeleteThe information which you people are given are really superb.
ReplyDeletefloridarentalshub
Thank you for this tutorial.its really informative tutorial.jogadoresdomundo
ReplyDeleteThe information which you people are given are really superb.megagfx-vovass
ReplyDeleteFor my view is Really nice.yotamkellner
ReplyDeleteall the words in simple way every one should understand easily.cartografia-gps
ReplyDeleteThose post in the blog are very useful millseteam
ReplyDeleteWhat a good suggestion posted by the peoples.gallery605
ReplyDeleteThe information which you people are given are really superb..!!!kilotipo
ReplyDeleteAll the post are nice to read it
ReplyDeletewavld2007
The information which you people are given are really superb..!!!kitket
ReplyDeleteall the words in simple way every one should understand easily.bruinatheists
ReplyDeleteNice post all information are useful to real life.mediacenterkopukm
ReplyDeleteMust be appreciated for the article.dohong
ReplyDeleteNot only to read need to spreed every one.kominka-doutou
ReplyDeleteArticles are very nice… observatoriodelaartesania
ReplyDeleteIts very useful if every one should follow this.snackbaridila
ReplyDeleteWhen should we expect it to release though?
ReplyDeleteTricksabout.net
ReplyDeleteinternet Tricks
Blogging Tricks
Chocolate Day SMS
ReplyDeleteChocolate Day Shayari
Chocolate Day Wishes
Teddy Day Wishes
Teddy Day SMS
Teddy Day Shayari
valentines day quotes for husband and wife
ReplyDeletevalentines day quotes for girlfriends
valentines day shayari in hindi
Latest News & Announcements of Railway Budget
ReplyDeleteindian railway ticket booking online
Community For GOT Questions & Answers
ReplyDeleteGame of thrones season 6 online streaming
Dead Characters Comeback Got 6
http://rao3mien.com/threads/com-ga-roti-hap-dan.326293.html
ReplyDeletehttp://sentour.vn/threads/com-ga-roti-hap-dan.9560.html
http://thpt-bacly-hanam.edu.vn/threads/com-ga-roti-hap-dan.6914.html
http://2muaban.com/threads/ga-cuon-toi-nuong.30626/
http://diendan.gamethu.net/threads/ga-cuon-toi-nuong.830121/
http://dichvuseo.ac.vn/threads/ga-cuon-toi-nuong.137065/
http://canmuaban.vn/threads/ga-cuon-toi-nuong.55138/
http://plus.edu.vn/threads/ga-cuon-toi-nuong.74111/
http://raovatchung.org/threads/ga-cuon-toi-nuong.113144/
http://taidanh.edu.vn/threads/ga-cuon-toi-nuong.48519/
https://www.cungrao.vn/threads/ga-cuon-toi-nuong.36068/
http://yoyovietnam.com/threads/g%C3%A0-cu%E1%BB%91n-t%E1%BB%8Fi-n%C6%B0%E1%BB%9Bng.45640/
http://hocdohoa.info/index.php?threads/g%C3%A0-cu%E1%BB%91n-t%E1%BB%8Fi-n%C6%B0%E1%BB%9Bng-h%E1%BA%A5p-d%E1%BA%ABn.25934/
http://gforum.vn/threads/g%C3%A0-cu%E1%BB%91n-t%E1%BB%8Fi-n%C6%B0%E1%BB%9Bng-h%E1%BA%A5p-d%E1%BA%ABn.172315/
http://diendan.shopsieure.com/index.php?threads/g%C3%A0-cu%E1%BB%91n-t%E1%BB%8Fi-n%C6%B0%E1%BB%9Bng-h%E1%BA%A5p-d%E1%BA%ABn.40110/
http://kienthucykhoa.edu.vn/threads/ga-cuon-toi-nuong-hap-dan.48286/
http://moffittjobfair.org/threads/ga-cuon-toi-nuong-hap-dan.136079/
http://muaban.xe88.vn/threads/ga-cuon-toi-nuong-hap-dan.20002/
http://tuoitredonganh.vn/diendan/threads/ga-cuon-toi-nuong-hap-dan-118425/
http://forum.dulichchung.vn/threads/ga-cuon-toi-nuong-hap-dan.11148/
Excellent post!!!. The strategy you have posted on this technology helped me to get into the next level and had lot of information in it.
ReplyDeleteNode JS training in chennai | Node JS training institute in chennai
very nice site
ReplyDeletePune To Mahabaleshwar Cab
Mumbai To Mahabaleshwar Taxi
cắt mí mắt you must post more code html6
ReplyDeleteToll free Support Numbers for gmail, hotmail and printes.
ReplyDeleteimo beta apk
Happy Diwali 2016 Pictures
ReplyDeleteHappy Diwali 2016 Photos
Diwali Festival Information & Wiki
Diwali Festival Information & Wiki
Happy Diwali 2016
Happy Diwali 2016 Rangoli designs
Happy Veterans Day 2016 Wishes
Happy Veterans Day 2016 Photos
When is Veterans Day Holiday 2016 Date
When is Veterans Day Holiday 2016 Date
Veterans Day Thanks You Quotes
Veterans Day Thanks You Letter
Thank for sharing
ReplyDeletenâng mũi bọc sụn
nâng mũi
download google allo apk 2016
ReplyDelete2016 letest google allo apk
I not know HTML 5 and HTML 6 but i will try to learn first HTML5 thanks!!
ReplyDeleteirctc tatkal booking
irctc tatkal
tatkal booking
nice post which I like
ReplyDeletepnr status
irctc pnr status
check pnr status
A child asked God: "If everything was written in fate so why should the convention?".
ReplyDeleteFriv 2 | Not Blocked At Schools | Yepi 2 | Unblocked Games
Thanks..
ReplyDeletemaket pasta
pasta altlığı
beze kulesi
strafor kesim
I want to sport your blog.
ReplyDeletehttp://www.tatkalirctc.com
very nice artical lovely good morning images
ReplyDeletegood morning flowers image
beautiful good morning messages
motivational good morning quotes
Best Good Morning Quotes
It has been simply incredibly generous with you to provide openly what exactly many individuals would’ve marketed for an ebook to end up making some cash for their end, primarily given that you could have tried it in the event you wanted. Read also Sweetest good morning messages and also Funny good morning text for him and Best 10 Good morning quotes
ReplyDeleteIt has been simply incredibly generous with you to provide openly what exactly many individuals would’ve marketed for an ebook to end up making some cash for their end, primarily given that you could have tried it in the event you wanted. Read also Good morning my love messages Read also Good morning images with nature
ReplyDeleteVery good article! We will be linking to this great post on our site. Keep up the great writing. whatsapp status love,
ReplyDeleteshort status for whatsapp
I really like it whenever people get together and share thoughts. Great blog, stick with it! movie box iphone,
ReplyDeletemovie box mac
Thank you for sharing with us. This is great article. Here are link related to movie box app iphone
DeleteHãy cũng tìm hiểu thông tin về thẩm mỹ viện bấm mí nào uy tín hiện nay
ReplyDeleteI look for such article along time, today i find it finally. this post give me lots of advise it is very useful for me Dripping Springs Texas Home Builders
ReplyDeleteimages happy easter
ReplyDeleteeaster wishes quotes
happy easter funny greetings
easter card sayings
The strategy you have posted on this technology helped me to get into the next level and had lot of information in it.
ReplyDeleteAngulaJs Training Institue in Chennai
Best AngulaJs Training in Chennai
It has been simply incredibly generous with you to provide openly what exactly many individuals would’ve marketed for an ebook to end up making some cash for their end, primarily given that you could have tried it in the event you wanted. Picsart photo editor
ReplyDeletePicsart Apk download
I think this is an informative post and it is very useful and knowledgeable. therefore, I would like to thank you for the efforts you have made in writing this article.
ReplyDeletecousin birthday images | sweet love quotes for husband | happy birthday daughter images
First meet, I took the initiative to ask her phone number. Whenever there is a chance spare her appointment to talk, chat.
ReplyDeletekingoroot l descargar whatsapp gratis l mobdro apk l subway surfers l 192.168.l.l l clash royale l subway surf l dream league soccer l baixar musicas l snapchat
polo outlet
ReplyDeletecoach outlet online
coach outlet online
michael kors outlet
coach outlet
polo ralph lauren
polo ralph lauren outlet online
cheap ray ban sunglasses
longchamp outlet
oakley sunglasses wholesale
20170528wanglili
Freedom APK is what comes to mind when it comes to surfing and playing premium game without shelling out a dime for it.
ReplyDeleteMany users have complained that there are no free lunches in life but this app makes us believe otherwise. Want to know more about the Freedom app? Check out this website Freedom for iOS Devices
i just read you article this is very informational post i learn a lot from
ReplyDeletethis article Get It Now
AC Market
ReplyDeleteAppFlix
Filelinked
Morpheus TV APK is a freeware to stream movies and TV shows for free. It integrates with Trakt to track what you are watching automatically. Trakt is a plugin which runs in the background of the device when you are streaming videos with Morpheus tv. The main use of the app is letting you streaming and downloading of different kind of movies, TV shows, etc.
ReplyDeleteAfter Google Pixel 3 arrivals, now Google Pixel 4 series ready to arrive. This is the latest attempt at the Google smartphone category, and this will be a great achievement. Google Pixel 4 comes with advanced technology as well as fixing all failures on Google Pixel 3 series.
ReplyDeletehttps://www.androidfreewares.com/
Filelinked for those who don't know, is an easy way to install applications on your Android device. As the Nvidia SHield is becoming more and more popular I thought I would share a quick and easy guide on installing FileLinked on your Shield. https://www.droidadmindownload.com/
ReplyDeletenike huarache
ReplyDeletesupreme outlet
yeezy boost 350
cheap jordans
nike air max 270
off white nike
curry 4 shoes
yeezy boost 350 v2
supreme clothing
air max 2018
Thanks for sharing this post,
ReplyDeleteStump Root APK could also be a quite Android one-click rooting application that extremely involves LG mobile or tablet devices.
http://stumproot.org
ReplyDeletethe Mobilism Apk is the one of the best ios,android App
instagram++ store to get thetons of free app and game. snapchat++ Here the latest version of TutuApp of free.Many time
game and update youtube++ so they are not running tutuapp is also
update a app in new feature so downloaad a many app so and check on tutuapp
Thanks a lot for this which is very helpful for every newbie like me. Getting this post I am benefited. And its pleasure to visit this http://odindownloadxda.com link and find useful tools for android users
ReplyDeleteCartoon HD APK is Best for Hollywood-Bollyood, Web series, Tv serials and all types of video. You can Download Cartoon HD Apk from our Trending Top5APK site. You can Also Download Cartoon HD For PC and Cartoon HD For iOS APK file.
ReplyDeleteXAPK Installer Download is an app that you can use to install .xapk files to the Android smartphones and devices easily. This app is freeware so you can download it for free.
ReplyDeleteLooking a professional logo for your business or company? We offer the best work and best deals for you!
ReplyDeleteVisit us today: https://www.fiverr.com/crubyofficial/design-sleek-minimalist-logo-with-social-media-kit?utm_campaign=gigs_show_buyers&utm_medium=shared&utm_source=copy_link&utm_term=plew88
This comment has been removed by the author.
ReplyDeleteExciting, great job, and thank you for sharing such a wonderful blog. Your article is so convincing that I don’t even stop to say anything about it. You did a good job. Keep it up.
ReplyDeleteThis is the profile you will be reading about Auto Clicker Downloads. So if you want to learn more about this you can skip the full Profile name Auto Mouse Clicker. Visit and have tech expertise.
VirginiaNewsToday Regularly Publish All The News From All Over The World Including Local News.
ReplyDeleteRegister company in Singapore
ReplyDeletehttps://ondemandint.com/singapore-company-registration/
The information which you people are given are really superb.
ReplyDeleteSudarshan Sukhani Net worth
You Provide Very Useful Content Post I Appreciate You Thanks For Sharing Please Share Good Work
ReplyDeleteMobile App Development Company
SEO Services in Delhi
Online Reputation Management Services
PPC Company
Emiway Bantai Net Worth 2021, Age, Bio, Wiki, Family, Girlfriend Income
ReplyDeleteSivakarthikeyan Net Worth 2021 – Age, Salary, Assets, Income, Property
ReplyDeleteThis essay covers a variety of fascinating historical periods. Thank you for a wonderful essay; we hope to see more like it in the future! do visit..
ReplyDeleteQuanta Life Insurance is a dedicated portal providing all knowlwdge of Life Insurance Policies, Plans, Guide, Premium Calculators, Insurance Companies Review and much more.
What is Endowment plan?
Top 10 Life Insurance Companies in USA 2022
\5 Things To Consider Before Buying Life Insurance
How to Calculate Life Insurance Premium
Prudential Life Insurance Review 2022
Lincoln Financial Life Insurance Review 2022
This website and its content is really good, I really like this website, it give so much information. Personal injury law
ReplyDeletei read your article and i impressed your blog click here to visit my site
ReplyDeleteYour blog is very amazing. Even it is looking as a wordpress website. Click Here to visit my blog.
ReplyDeleteNice Information, Click Here to download top follow app for Instagram followers and likes.
ReplyDeleteThanks for sharing this amazing codes with us i love coding Download coding applicaitons Click Here if you want.
ReplyDeleteBest Blog!. Stay Connected!
ReplyDeletetopfollowapkapp
topfollowandroidapp
millionsofinsta
Check Now Blog
ReplyDeletehttp://santapanberita.info/resep-kue-keranjang-atau-nian-gao-sajian-ciri-khas-imlek/
ReplyDeletenice article.. you may also like this Bff Yoga Poses
ReplyDeleteThank you for this tutorial. Great way of sharing this information. Get more information regarding this https://itsapkhub.com/
ReplyDeleteTo learn more about Instander Apk, I recommend conducting an internet search or visiting reliable app repositories to find information, reviews, and official documentation related to the application. And Also try: YO WhatsApp
ReplyDelete