<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Creating new element in HTML5 &#8211; Sibeesh Passion</title>
	<atom:link href="https://www.sibeeshpassion.com/tag/creating-new-element-in-html5/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.sibeeshpassion.com</link>
	<description>My passion towards life</description>
	<lastBuildDate>Fri, 17 Jul 2015 12:50:04 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>/wp-content/uploads/2017/04/Sibeesh_Passion_Logo_Small.png</url>
	<title>Creating new element in HTML5 &#8211; Sibeesh Passion</title>
	<link>https://www.sibeeshpassion.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>HTML 5 Elements in a Look: Part 1</title>
		<link>https://www.sibeeshpassion.com/html-5-elements-in-a-look-part-1/</link>
					<comments>https://www.sibeeshpassion.com/html-5-elements-in-a-look-part-1/#disqus_thread</comments>
		
		<dc:creator><![CDATA[SibeeshVenu]]></dc:creator>
		<pubDate>Thu, 29 Jan 2015 19:39:28 +0000</pubDate>
				<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Character Encoding in HTML5]]></category>
		<category><![CDATA[Creating new element in HTML5]]></category>
		<category><![CDATA[HTML5 Declaration]]></category>
		<category><![CDATA[Structure of HTML5]]></category>
		<guid isPermaLink="false">https://sibeeshpassion.com/?p=881</guid>

					<description><![CDATA[HTML 5 Introduction We all are familiar with HTML. Now HTML 5 is the latest version of markup language. HTML 5 has a semantic structure. In HTML 5 we have been given with some controls that will save your time when developing. Now we will see what all the controls and features are that were introduced in HTML 5. Before we start, please ensure that you have installed Visual Studio 2010 SP1 (or later). Then enable the HTML option in the target section. Got to Tools -&#62; Options -&#62; Text Editor -&#62; HTML. HTML 5 Markup The DOCTYPE declaration [html] [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><strong>HTML 5 Introduction</strong></p>
<p>We all are familiar with HTML. Now HTML 5 is the latest version of markup language. HTML 5 has a semantic structure. In HTML 5 we have been given with some controls that will save your time when developing. Now we will see what all the controls and features are that were introduced in HTML 5.</p>
<p>Before we start, please ensure that you have <a href="https://www.microsoft.com/en-us/download/details.aspx?id=23691" rel="nofollow">installed Visual Studio 2010 SP1</a> (or later).</p>
<p>Then enable the HTML option in the target section.</p>
<p>Got to Tools -&gt; Options -&gt; Text Editor -&gt; HTML.</p>
<p><img decoding="async" src="http://www.c-sharpcorner.com/UploadFile/65794e/html-5-elements-in-a-look-part-1/Images/html.jpg" alt="html" /></p>
<p><strong>HTML 5 Markup</strong></p>
<p><strong>The DOCTYPE declaration </strong></p>
<p>[html]<br />
&lt;!DOCTYPE html&gt;<br />
[/html]</p>
<p><strong>The character encoding (charset) declaration</strong><br />
[html]<br />
&lt;meta charset=“UTF-8″&gt;<br />
[/html]</p>
<p><strong>HTML 5 Example</strong><br />
[html]<br />
&lt;!DOCTYPE html&gt;<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;meta charset=“UTF-8″&gt;<br />
&lt;title&gt;Sibeesh Passion wish you a happy new year&lt;/title&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
Welcome to Sibeesh Passion&lt;/body&gt;<br />
&lt;/html&gt;<br />
[/html]</p>
<p><strong>Structure of HTML5</strong></p>
<p>As I said earlier, HTML 5 has a semantic structure. It reduces the efforts of a UI developer. The following image will explain the structure.</p>
<p><strong>Before Introducing HTML 5</strong></p>
<p><img decoding="async" src="http://www.c-sharpcorner.com/UploadFile/65794e/html-5-elements-in-a-look-part-1/Images/Before%20Introducing%20HTML%205.jpg" alt="Before Introducing HTML 5" /></p>
<p><strong>After Introducing HTML 5</strong></p>
<p><img decoding="async" src="http://www.c-sharpcorner.com/UploadFile/65794e/html-5-elements-in-a-look-part-1/Images/After%20Introducing%20HTML%205.jpg" alt="After Introducing HTML 5" /></p>
<p>As you can see in the preceding image, HTML 5 has introduced new tags.</p>
<ul>
<li>Header</li>
<li>Nav</li>
<li>Section</li>
<li>Aside</li>
<li>Article</li>
<li>footer</li>
</ul>
<p><strong>Adding our own elements!</strong></p>
<p>Yes it is true, we can create our own element by introducing some styles, now we will see how to do this.</p>
<p>To do this we need a markup as follows.<br />
[html]<br />
&lt;!DOCTYPE html&gt;<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
  &lt;title&gt;Your own element &lt;/title&gt;<br />
  &lt;script&gt;document.createElement(“yourelement”)&lt;/script&gt;<br />
  &lt;style&gt;<br />
 yourelement {<br />
    display: block;<br />
  }<br />
  &lt;/style&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;div&gt;<br />
Normal element<br />
&lt;/div&gt;<br />
&lt; yourelement &gt;My element&lt;/ yourelement &gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;&lt;!DOCTYPE html&gt;<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
  &lt;title&gt;Your own element &lt;/title&gt;<br />
  &lt;script&gt;document.createElement(“yourelement”)&lt;/script&gt;<br />
  &lt;style&gt;<br />
 yourelement {<br />
    display: block;<br />
  }<br />
  &lt;/style&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;div&gt;<br />
Normal element<br />
&lt;/div&gt;<br />
&lt; yourelement &gt;My element&lt;/ yourelement &gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;<br />
[/html]</p>
<p>Please note that we have created a new element <em>yourelement</em>.</p>
<p>Cool.</p>
<p>See you soon in the next part.</p>
<p>Kindest Regards,</p>
<p><a href="http://sibeeshpassion.com/" rel="nofollow">Sibeesh Venu</a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.sibeeshpassion.com/html-5-elements-in-a-look-part-1/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
