Tag: Html5

  • CSS TUTORIAL FOR INTERMEDIATES: POSITIONING AND ITS TYPES.

    Positioning HTML elements may be the toughest but most rewarding things you can master. There are four types to interpret the size styles: Position: static position is the default behavior if you do not set it – the element just appears where it is in the flow of the HTML…

  • HTML5 Tutorial: Base Element Tag

    The HTML <base> tag is used to specify a base URI, or URL, for relative links. For example, you can set the base URL once at the top of your page, then all subsequent relative links will use that URL as a starting point. The <base> tag must be between…

  • Solution for HTML5 Accessibility in IE

    OUTPUT (in IE) AFTER FIXING THE SOLUTION: OUTPUT (in IE) BEFORE FIXING THE SOLUTION: HTML5 CODE: <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/HTML" lang="en" xml:lang="en"> <head> <meta charset="utf-8" /> <title>My first HTML5 website</title> </head> <body style="padding-left: 35px;"> <header> Header Tag of HTML5 with <nav><a href="#">&lt;nav&gt;</a> </nav> </header> <article> <section> <h2>Article & section Tag</h2>…

  • LED Concept in HTML5

    The mesmerizer Mouse Over on grid or type alphabets to see the animations (Note: This HTML5 Canvas concept will not work in Internet Explorer) Step-1 Open a new HTML document. Step-2 Paste the below code and save it as led.html. <!DOCTYPE html> <html><head> <title>The mesmerizer</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <script…