Recent Posts

Editors Picks

Tuesday, 5 April 2016

How To Use Audio & Video Tag in HTML

<html>
<head><title>jani world</title></head>
<body>


<audio controls>
  <source src="JANI1.ogg" type="audio/ogg">
  <source src="JANI2.mp3" type="audio/mpeg">
  Your browser does not support the audio element.
</audio>
</body>
</html>




<html>
<head>
<style>
body  {
    background-image: url("paper.gif");
    background-color: #cccccc;
}
</style>
</head>
<body>

<h1>Hello World!</h1>

</body>
</html>

Use Marquee Tag In HTML






<marquee>This text will scroll from right to left</marquee>


This marquee tag use for movement of any word right to left. Maqruee tag used for to make world  interactive.

<marquee direction="up">This text will scroll from bottom to top</marquee> 


This marquee tag used for word scroll from bottom to top.


<marquee direction="down" width="250" height="200" behavior="alternate" style="border:solid">
  <marquee behavior="alternate">
    This text will bounce
  </marquee>
</marquee>

In which marquee tag used for bounce . In which word will be scroll down and set all properties of marquee tag .Use and set hight ,width , behavior and style.

<marquee bgcolor="#d9d9ff" width="50%">Background and Width</marquee>

Marquee tag in which set bgcolor and width.