Skip to content

Instantly share code, notes, and snippets.

@anaszen777
Created August 11, 2013 07:23
Show Gist options
  • Select an option

  • Save anaszen777/6203854 to your computer and use it in GitHub Desktop.

Select an option

Save anaszen777/6203854 to your computer and use it in GitHub Desktop.
<html>
<head>
<title>Marquee</title>
</head>
<body>
<marquee onmouseover="stop()" onmouseout="start()" bgcolor="green">
<h1>Marquee</h1>
</marquee>
<center>
<table border="2" width="500px">
<tr>
<th><marquee direction="right" onmouseover="stop()" onmouseout="start()">Sr. No.</th>
<th><marquee direction="left" onmouseover="stop()" onmouseout="start()">Languages</th>
</tr>
<tr>
<td><marquee direction="up" scrollamount="20" onmouseover="stop()" onmouseout="start()">1.</td>
<td><marquee direction="up" scrollamount="20" onmouseover="stop()" onmouseout="start()">C</td>
</tr>
<tr>
<td><marquee direction="down" onmouseover="stop()" onmouseout="start()">2.</td>
<td><marquee direction="down" onmouseover="stop()" onmouseout="start()">C++</td>
</tr>
<tr>
<td height="100px"><marquee direction="right" onmouseover="stop()" onmouseout="start()">3.</td>
<td><marquee direction="left" onmouseover="stop()" onmouseout="start()">JAVA</td>
</tr>
<tr>
<td><marquee direction="left" onmouseover="stop()" onmouseout="start()">4.</td>
<td height="100px"><marquee direction="right" onmouseover="stop()" onmouseout="start()">HTML</td>
</tr>
<tr>
<td><marquee behavior="alternate" onmouseover="stop()" onmouseout="start()">5.</td>
<td><marquee behavior="alternate" onmouseover="stop()" onmouseout="start()">CSS</td>
</tr>
<tr>
<td><marquee behavior="scroll" onmouseover="stop()" onmouseout="start()">6.</td>
<td><marquee behavior="scroll" onmouseover="stop()" onmouseout="start()">ASP.NET</td>
</tr>
<tr>
<td height="100px"><marquee behavior="slide" onmouseover="stop()" onmouseout="start()">7.</td>
<td><marquee direction="scroll" onmouseover="stop()" onmouseout="start()">Programming</td>
</tr>
<tr>
<td><marquee behavior="scroll" onmouseover="stop()" onmouseout="start()">8.</td>
<td height="100px"><marquee behavior="slide" onmouseover="stop()" onmouseout="start()">Skills</td>
</tr>
</marquee>
</center>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment