Crazy discount on akhoni.com

Friday, July 13, 2012

Attractive to your websites by (HTML 5 0)

HTML5 <! DOCTYPE>

Since HTML 4 SGML DTD that was created based on the reference was to write. But HTML 5, which is not shown.
1

<! DOCTYPE html> </ div>
HTML5 <area> Tag

Here you have an image of the inside of a small part of the image will show.
1
2
3
4
5
6
7

<img src ="planets.gif" width="145" height="126" alt="Planets" usemap ="#planetmap" />

<map name="planetmap">
<area shape="rect" coords="0,0,82,126" href="sun.htm" alt="Sun" />
<area shape="circle" coords="90,58,3" href="mercur.htm" alt="Mercury" />
<area shape="circle" coords="124,58,8" href="venus.htm" alt="Venus" />
</ Map>

This link also can be seen better in the bujate.
HTML5 <embed> Tag

If you want to add something such as a flash I can use this tag.
1

<embed src="helloworld.swf" />
HTML5 <address> Tag

This information is used for a Writer. This is italic text.
1
2
3
4
5
6
7

<address>
Written by <a href="mailto:webmaster@example.com"> Jon Doe </ a>. <br />
Visit us at: <br />
Example.com <br />
Box 564, Disneyland <br />
USA
</ Address>
HTML5 <audio> Tag

The most interesting thing is that you can play the audio on the Web without a Flash player.
1
2
3
4
5

<audio controls="controls">
<source src="song.ogg" type="audio/ogg" />
<source src="song.mp3" type="audio/mp3" />
Your browser does not support the audio tag.
</ Audio>
HTML5 Video

The video player can be run without any of the pages. I can only play mp4 and ogg.
1
2
3
4
5

<video width="320" height="240" controls="controls">
<source src="movie.mp4" type="video/mp4" />
<source src="movie.ogg" type="video/ogg" />
Your browser does not support the video tag.
</ Video>
HTML5 Canvas

Web pages can use it to draw on the canvas.
1

<canvas id="myCanvas" width="200" height="100"> </ canvas>
HTML5 SVG

CSS web pages without a password, you can use it to draw.
1
2
3
4
5
6
7
8
9
10
11
12

<! DOCTYPE html>
<html>
<body>

<h1> My first SVG </ h1>

<svg xmlns="http://www.w3.org/2000/svg" version="1.1">
   <circle cx="100" cy="50" r="50" stroke="black" stroke-width="2" fill="green" />
</ Svg>

</ Body>
</ Html>
CSS3 in HTML5

HTML 5 and CSS 3 is able to rotate the image.
CSS3 Example
1
2
3

{
transform: rotate (30deg);
}
HTML5 Drag and Drop

You can drag and drop any image in the HTML 5

This does not code for the link in the email so I can bujate.
HTML5 Geolocation

The most interesting thing is that you wanted your web pages can view your location on the map.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

<script>
var x = document.getElementById ("demo");
function getLocation ()
{
if (navigator.geolocation)
{
navigator.geolocation.getCurrentPosition (showPosition);
}
else {x.innerHTML = "Geolocation is not supported by this browser.";}
}
function showPosition (position)
{
x.innerHTML = "Latitude:" + position.coords.latitude +
"<br /> Longitude:" + position.coords.longitude;
}
</ Script>
HTML5 Application Cache

HTML 5 Offline Browsing The advantage is you. Later, you will see it for oyebapejake Cache.

No comments:

Post a Comment