Unicode:- An international encoding standard for use with different languages and scripts, by which each letter, digit, or symbol is assigned a unique numeric value that applies across different platforms and programs. Unicode is a character encoding standard …
Read More »HTML5 Tutorial
What is HTML5?
In simple terms, HTML5 is a Web page (or HTML document) in a plain text file that has been encoded using Hypertext Markup Language (HTML) to appear in a Web browser. Here is a meaning …
Read More »New features in HTML5
New features in HTML5 HTML5 introduces a number of new elements and attributes that help in building a modern website. Following are the great features introduced in HTML5. New Semantic Elements:- These are like <header>, <footer>, …
Read More »Basic HTML5 Syntax Rules
HTML5 Syntax Rules HTML5 is coming with lots of flexibility and support the followings Rules: Uppercase tag names. Quotes are optional for attributes. Attribute values are optional. Closing empty elements are optional.
Read More »How to Access Notepad, Save Document and Run the script on the Browser
Here, you will learn how to Access a notepad in windows and write the script. Steps for Windows 7 1. Click on Start Button on the bottom left corner of the desktop. 2. Select All Programs. …
Read More »Setting Up the Document Structure
Setting Up the Document Structure HTML is the way from where a user can get creative with their Web content, but there must be an underlying structure in place for Web browsers to read and …
Read More »Specifying the Document Type
Specifying the Document Type Here, you will learn how to specify the document type. So whenever you start creating an HTML5 document, the first line of the document should be: <!DOCTYPE html> The DOCTYPE tag always begins with an exclamation point and …
Read More »Creating the HTML, Head, and Body Sections
All of the HTML code except the DOCTYPE tag is placed within the two sided <html> tag. The tags <html> and </html> serve as a “wrapper” around all the other tags in the document of HTML. In addition, the document should …
Read More »Creating Paragraphs and Line Breaks
Creating Paragraphs and Line Breaks Here, you will learn how paragraph and line break tags has been used in the document. These tags are used within the <body> section of the document, type the text that …
Read More »Creating Headings
Creating Headings <p>The HTML standard defines six levels of headings, <h1> through <h6>.The higher the heading number, the smaller the size of text is shown on the screen.</p> <p>HTML5 introduces a new tag called <hgroup>. …
Read More »Applying Bold and Italic Formatting
Applying Bold and Italic Formatting Applying bold and italic styles are two ways of making text attractive. These styles are generally used in paragraphs rather than in headings. For bold and italics text, use the <b> and <i> tags, …
Read More »
The Element
The <article> element is used for an article, which is known to be an independently distributable document, like an article in a magazine. There are some element attributes of an <article> Element:- Accesskey Class Contenteditable Contextmenu Dir Draggable Hidden …
Read More »The < aside > Element
The <aside> element represents an aside to the text, such as a sidebar. Basically <aside> Tag is used in sidebar of a page, whenever user clicks on the index, it redirects the user on the related content. There are …
Read More »The < audio > Element
The <audio>Element is used for playing the audio (sound) file in the browser with full user control support. The <audio> Element contains an extra child element called SOURCE, which is used to call the exact media file which has been played …
Read More »The < canvas > Element
The <canvas> tag is used to draw graphics by using the JavaScript. The <canvas> tag is only a container for graphics. Basically this tag is used for graphical representation with the help of javascript. There are some …
Read More »