Author Archives: Harshal Shah

About Harshal Shah

Harshal Shah is CEO & Founder of Xhtmljunkies, Located in Gujarat, India, XHTML Junkies is one of the best companies that offer unique eCommerce solutions by the virtue of its dedicated professionals. Our professionals are extremely proficient in offering development services pertaining to eCommerce. You can find Harshal on and Twitter.

Basic Features of HTML5

HTML is useful to create a documents on the world wide web web pages. It is useful to create a website. HTML5 is the new specification of HTML. HTML5 has enhanced features for programmers. HTML5 is the back-end coding system. It means that dictates how Web pages should appear. HTML5 introduced so many new features. In HTML5 there are some new features and its include specific functions for audio, video, embedding graphics and interactive documents. HTML5 also introduced new elements like <header>, <footer>, <nav>, and <figure>.

Webworkers are so useful features of HTML5. Webworkers contain some web applications which are use heavy scripts to perform functions. The another feature of HTML5 is video and with the help of this feature you can embed video without any other party plug-ins. Canvas is so useful feature for a web developer. Canvas feature allows developer to rendering of 2D shapes and bitmap images. The next features of HTML5 is Application caches. Its allow users functional web applications and that applications work offline as well as online. Application Caches stores more information and its work like cookies. When HTML5 comes to website crawling and indexing at that time it is SEO friendly. It is an alternative to Flash and Silverlight.

If you want to know more about our conversion services like psd to html, psd to wordpress and many more than click here psd to html and psd to wordpress.

Basic Overview of HTML

HTML means HyperText Markup Language. This markup language is a set of markup tags. HTML is not a programming language like C,C++ etc… It is a markup language. You can create a webpage with the help of HTML. In HTML we are using a varieties of tags and attributes. There are lots of Tags and elements. Tags are one type of labels and use of the tags to mark up the beginning and end of an element. The HTML is start with its structure <HTML><HEAD>…and ends with the </HTML></HEAD>. The extension of the HTML files is .HTML. The elements h1,h2,h3…h6 are useful to defined the HTML tags.

The body tag is the content of the document. <body>…</body>. The title tage defined the title of the document <title>….</title>

For EX:
<html>
<head>
<title>Title of the document</title>
</head>
<body>
The content of the document……
</body>
</html>

The alignment defined different alignments. Align attribute is useful to change the horizontal location of your elements.

For Ex :

<h2 align=”center”>centered heading</h2>

<h2 align=”left”>lefted heading</h2>

<h2 align=”right”>righted heading</h2>

HTML documents defined by different HTML elements. Its starts with the start tag and ends with the end tag. For ex. <p>…</p>, <br>…</br> and many more. HTML elements have different attributes. Attributes defined in the start tag. Attributes is the additional information of the document. Attributes ends with the quotes Create a Sitemap in WordPress

For ex:<h1 title=”Hello”>Title with Heading Tag</h1>

HTML paragraphs defined with the <p> tag. Its also ends with the </p>. <p>First paragraph</p>. If you want to break the line in the paragraph than using a <br> tag. <p>This is a one <br/>line and <br/> it is a second line</p>.

In HTML links are defined using the <a> tag. You can link another document with the help of link tag. <a href=”http://www.google.com/“>your text</a>.

The <font> tag is used to defined font size, font style and font color of the text of the content. The default font size is 3. The range of the font is 1 to 7.