FREE HTML CODE
Search HTML Code

Paypal Button Code

Paypal Button Code






PayPal requires that you use the following buttons and messages when implementing Express Checkout. Please review the Express Checkout Integration Guide for complete instructions.

Express Checkout Button

When PayPal is placed as the first step of your checkout process, use the Express Checkout button as displayed below.



Copy and paste this HTML code like you would with normal text:



PayPal with other Payment Methods

When PayPal is positioned with other payment methods, PayPal recommends you include the PayPal logo along with the message displayed below.



Note: The HTML code only contains the PayPal logo and the related message.

Copy and paste this HTML code like you would with normal text:



Simple Drop-Down Menu v2.0 HTML CODE

Simple Drop-Down Menu v2.0


It is a One Level Drop-Down Menu with Timeout effect.

If you are looking for advanced script, see the Multi-Level Drop-Down Menu based on simple treelike unordered list.

Internet has a lot of scripts with the name "Drop Down Menu". One day I needed to make such menu for my site. I have rummaged a heap of sites and archives with scripts. And not found what I looked for. On the Net scripts shared on two variants. The first - utterly worthless scripts. The second - too complex heap up and chargeable.


And I just wrote this simple script:

Sample


This menu can be located anywhere on the page:











HTML Code


HTML code is very simple and without tables. It used unordered list for menu items and hidden layers near own parent items.

Parent items and hidden layers have unique identifiers. Also these have event handlers onmouseover and onmouseout:

<ul id="sddm">

    <li><a href="#" 
        onmouseover="mopen('m1')" 
        onmouseout="mclosetime()">Home</a>

        <div id="m1" 
            onmouseover="mcancelclosetime()" 
            onmouseout="mclosetime()">
        <a href="#">HTML Drop Down</a>

        <a href="#">DHTML Menu</a>
        <a href="#">JavaScript DropDown</a>

        <a href="#">Cascading Menu</a>
        <a href="#">CSS Horizontal Menu</a>

        </div>
    </li>
    <li><a href="#" 
        onmouseover="mopen('m2')" 
        onmouseout="mclosetime()">Download</a>

        <div id="m2" 
            onmouseover="mcancelclosetime()" 
            onmouseout="mclosetime()">
        <a href="#">ASP Dropdown</a>

        <a href="#">Pulldown menu</a>
        <a href="#">AJAX Drop Submenu</a>

        <a href="#">DIV Cascading Menu</a>
        </div>
    </li>

    <li><a href="#">Order</a></li>
    <li><a href="#">Help</a></li>

    <li><a href="#">Contact</a></li>
</ul>
<div style="clear:both"></div>



CSS Code


<li> tag have loat: left; declaration. sumbmenu layer have visibility: hidden; and position: absolute;. Anchor tag set to display: block;

Everything else is usual decoration:

#sddm
{ margin: 0;
 padding: 0;
 z-index: 30}

#sddm li
{ margin: 0;
 padding: 0;
 list-style: none;
 float: left;
 font: bold 11px arial}

#sddm li a
{ display: block;
 margin: 0 1px 0 0;
 padding: 4px 10px;
 width: 60px;
 background: #5970B2;
 color: #FFF;
 text-align: center;
 text-decoration: none}

#sddm li a:hover
{ background: #49A3FF}

#sddm div

{ position: absolute;
 visibility: hidden;
 margin: 0;
 padding: 0;
 background: #EAEBD8;
 border: 1px solid #5970B2}

 #sddm div a
 { position: relative;
  display: block;
  margin: 0;
  padding: 5px 10px;
  width: auto;
  white-space: nowrap;
  text-align: left;
  text-decoration: none;
  background: #EAEBD8;
  color: #2875DE;
  font: 11px arial}

 #sddm div a:hover
 { background: #49A3FF;
  color: #FFF}


JavaScript Code


Insert this code between your <head></head> tags. Look to the code for the comments:


// Copyright 2006-2007 javascript-array.com

var timeout = 500;

var closetimer = 0;
var ddmenuitem = 0;

// open hidden layer
function mopen(id)

{ 
 // cancel close timer
 mcancelclosetime();

 // close old layer
 if(ddmenuitem) ddmenuitem.style.visibility = 'hidden';

 // get new layer and show it
 ddmenuitem = document.getElementById(id);
 ddmenuitem.style.visibility = 'visible';

}

// close showed layer
function mclose()
{
 if(ddmenuitem) ddmenuitem.style.visibility = 'hidden';
}

// go close timer
function mclosetime()

{
 closetimer = window.setTimeout(mclose, timeout);
}

// cancel close timer
function mcancelclosetime()
{
 if(closetimer)
 {
  window.clearTimeout(closetimer);
  closetimer = null;
 }
}


// close layer when click-out
document.onclick = mclose; 

That’s it! All you have to do now is add some hover styles and make it your own. Enjoy!

HTML Code For Download Link

HTML Code For Download Link


The destination URL points to the file you want downloaded. In this case it is a Zip file called aff-masters.zip.
Source

<a href="http://www.goldcoastwebdesigns.com/dl/aff-masters.zip" target="_blank">Download Link</a>


Output

Download Link

You will notice that the link is set to open in a new browser window. The reason for this is because if the link is not set to open in a new browser window, when the link is clicked, the page where the download link is located will sometimes disappear.

The only drawback to setting these links to open in a new browser window is that pop-up blocking software might block the new browser opening. In this case, it is suggested to instruct visitors to turn pop-up blocking programs off while downloading from your page.

A regular hyperlink can be coded instead of the one above but the visitor should be instructed to right-mouse-click/alternate-mouse-click on the link and select "Save Target As" from the menu.





The PDF Download Link


Source
<a href="http://www.goldcoastwebdesigns.com/dl/aff-masters.pdf">Download Link</a>


Output

Download Link

Right-Click Menu
Caution: Clicking a link that points to a PDF file will not cause it to download to your hard drive directly. It will only download and open the file in your web browser.

It's true you can save a copy of the PDF from the browser, but most people do not know this. For this reason, it is best to instruct people to right-mouse click the link and save the file to their hard drive.

Tip: How do you know in advance if the link you are going to click on is a normal web page, a PDF (.pdf) file, a Zip (.zip) file or an executable (.exe) program? Check the status bar before clicking.



Relative Links


The example HTML codes above illustrate hyperlinks with an absolute path. The path is absolute because the full URL is given as the value.

It is however possible to give a relative value like this:

Source

<a href="dl/aff-masters.pdf">Download Link</a>

Output


Download Link

You will notice that the value given above is relative to two things:

1. The location of the file being downloaded.

2. The location of the page where the link to the download resides.


So, if this page you are reading right now was located in the dl directory, in order for the download link to work, the HTML would need to look like this:

<a href="aff-masters.pdf">Download Link</a>

In other words, if the download page is located in the same directory as the file to be downloaded, the above code would be used.


Anchor - Local Button
Tip: Users of 1st Page 2000 free HTML editor, can simply click on the Anchor - Local button to create relative links without mistakes. This button is located on the Tabbed Palette in Expert mode.

Obviously, to use this feature, the directory structure on your web site should be the same as it is on your hard drive in order for the links to work.



The HTML Download Button

HTML buttons can also be used to download files. Visit to-3gp.com to see these exact buttons in action across the entire website.
Source


<form><input type="button" value="Download Now" onClick="window.location.href='/dl/aff-masters.exe'"></form>


Output



Additionl Tips


About Zip (.zip) Files
Not everybody knows how to unzip .zip files because additional software needs to be installed on the users computer in order to unzip the file. For this reason, it can be a good idea to supply a self extracting zip file so that the user can unzip the file without installing additional software.


If you would like to see a demonstration of a self extracting zip file in action, use the download link below:

Download Demo File - aff-masters.exe - 1.23 MB

After the file has downloaded, just double click the file to start unzipping. By default, the file will unzip to C:\Aff-Masters. But you can set it to unzip anywhere you want. After the file is unzipped, you will own an excellent marketing book in PDF format.

HTML Color Codes



Color Values


Color Color HEX Color RGB
#000000 rgb(0,0,0)
#FF0000 rgb(255,0,0)
#00FF00 rgb(0,255,0)
#0000FF rgb(0,0,255)
#FFFF00 rgb(255,255,0)
#00FFFF rgb(0,255,255)
#FF00FF rgb(255,0,255)
#C0C0C0 rgb(192,192,192)
#FFFFFF rgb(255,255,255)





16 Million Different Colors

The combination of Red, Green, and Blue values from 0 to 255, gives
more than 16 million different colors (256 x 256 x 256).
If you look at the color table below, you will see the result of varying
the red light from 0 to 255, while keeping the green and blue light at zero.
To see the full list of color mixes when RED varies from
0 to 255, click on one of the HEX or RGB values below.
Red Light Color HEX Color RGB
#000000  rgb(0,0,0) 
#080000  rgb(8,0,0) 
#100000  rgb(16,0,0) 
#180000  rgb(24,0,0) 
#200000  rgb(32,0,0) 
#280000  rgb(40,0,0) 
#300000  rgb(48,0,0) 
#380000  rgb(56,0,0) 
#400000  rgb(64,0,0) 
#480000  rgb(72,0,0) 
#500000  rgb(80,0,0) 
#580000  rgb(88,0,0) 
#600000  rgb(96,0,0) 
#680000  rgb(104,0,0) 
#700000  rgb(112,0,0) 
#780000  rgb(120,0,0) 
#800000  rgb(128,0,0) 
#880000  rgb(136,0,0) 
#900000  rgb(144,0,0) 
#980000  rgb(152,0,0) 
#A00000  rgb(160,0,0) 
#A80000  rgb(168,0,0) 
#B00000  rgb(176,0,0) 
#B80000  rgb(184,0,0) 
#C00000  rgb(192,0,0) 
#C80000  rgb(200,0,0) 
#D00000  rgb(208,0,0) 
#D80000  rgb(216,0,0) 
#E00000  rgb(224,0,0) 
#E80000  rgb(232,0,0) 
#F00000  rgb(240,0,0) 
#F80000  rgb(248,0,0) 
#FF0000  rgb(255,0,0) 




Shades of Gray


Gray colors are created by using an equal amount of power to all of the light
sources.

To make it easier for you to select the correct shade, we have
created a table of gray shades for you:
Gray Shades Color HEX Color RGB
#000000  rgb(0,0,0) 
#080808  rgb(8,8,8) 
#101010  rgb(16,16,16) 
#181818  rgb(24,24,24) 
#202020  rgb(32,32,32) 
#282828  rgb(40,40,40) 
#303030  rgb(48,48,48) 
#383838  rgb(56,56,56) 
#404040  rgb(64,64,64) 
#484848  rgb(72,72,72) 
#505050  rgb(80,80,80) 
#585858  rgb(88,88,88) 
#606060  rgb(96,96,96) 
#686868  rgb(104,104,104) 
#707070  rgb(112,112,112) 
#787878  rgb(120,120,120) 
#808080  rgb(128,128,128) 
#888888  rgb(136,136,136) 
#909090  rgb(144,144,144) 
#989898  rgb(152,152,152) 
#A0A0A0  rgb(160,160,160) 
#A8A8A8  rgb(168,168,168) 
#B0B0B0  rgb(176,176,176) 
#B8B8B8  rgb(184,184,184) 
#C0C0C0  rgb(192,192,192) 
#C8C8C8  rgb(200,200,200) 
#D0D0D0  rgb(208,208,208) 
#D8D8D8  rgb(216,216,216) 
#E0E0E0  rgb(224,224,224) 
#E8E8E8  rgb(232,232,232) 
#F0F0F0  rgb(240,240,240) 
#F8F8F8  rgb(248,248,248) 
#FFFFFF  rgb(255,255,255) 






Web Safe Colors?


Some years ago, when computers supported max 256 different colors, a list of
216 "Web Safe Colors" was suggested as a Web standard, reserving 40 fixed system
colors.

The 216 cross-browser color palette was created to ensure that all computers
would display the colors correctly when running a 256 color palette.

This is not important today, since most computers can display millions of different colors.
Anyway, here is the list:
000000 000033 000066 000099 0000CC 0000FF
003300 003333 003366 003399 0033CC 0033FF
006600 006633 006666 006699 0066CC 0066FF
009900 009933 009966 009999 0099CC 0099FF
00CC00 00CC33 00CC66 00CC99 00CCCC 00CCFF
00FF00 00FF33 00FF66 00FF99 00FFCC 00FFFF
330000 330033 330066 330099 3300CC 3300FF
333300 333333 333366 333399 3333CC 3333FF
336600 336633 336666 336699 3366CC 3366FF
339900 339933 339966 339999 3399CC 3399FF
33CC00 33CC33 33CC66 33CC99 33CCCC 33CCFF
33FF00 33FF33 33FF66 33FF99 33FFCC 33FFFF
660000 660033 660066 660099 6600CC 6600FF
663300 663333 663366 663399 6633CC 6633FF
666600 666633 666666 666699 6666CC 6666FF
669900 669933 669966 669999 6699CC 6699FF
66CC00 66CC33 66CC66 66CC99 66CCCC 66CCFF
66FF00 66FF33 66FF66 66FF99 66FFCC 66FFFF
990000 990033 990066 990099 9900CC 9900FF
993300 993333 993366 993399 9933CC 9933FF
996600 996633 996666 996699 9966CC 9966FF
999900 999933 999966 999999 9999CC 9999FF
99CC00 99CC33 99CC66 99CC99 99CCCC 99CCFF
99FF00 99FF33 99FF66 99FF99 99FFCC 99FFFF
CC0000 CC0033 CC0066 CC0099 CC00CC CC00FF
CC3300 CC3333 CC3366 CC3399 CC33CC CC33FF
CC6600 CC6633 CC6666 CC6699 CC66CC CC66FF
CC9900 CC9933 CC9966 CC9999 CC99CC CC99FF
CCCC00 CCCC33 CCCC66 CCCC99 CCCCCC CCCCFF
CCFF00 CCFF33 CCFF66 CCFF99 CCFFCC CCFFFF
FF0000 FF0033 FF0066 FF0099 FF00CC FF00FF
FF3300 FF3333 FF3366 FF3399 FF33CC FF33FF
FF6600 FF6633 FF6666 FF6699 FF66CC FF66FF
FF9900 FF9933 FF9966 FF9999 FF99CC FF99FF
FFCC00 FFCC33 FFCC66 FFCC99 FFCCCC FFCCFF
FFFF00 FFFF33 FFFF66 FFFF99 FFFFCC FFFFFF



#000000 #000033 #000066 #000099 #0000CC #0000FF
#003300 #003333 #003366 #003399 #0033CC #0033FF
#006600 #006633 #006666 #006699 #0066CC #0066FF
#009900 #009933 #009966 #009999 #0099CC #0099FF
#00CC00 #00CC33 #00CC66 #00CC99 #00CCCC #00CCFF
#00FF00 #00FF33 #00FF66 #00FF99 #00FFCC #00FFFF


#330000 #330033 #330066 #330099 #3300CC #3300FF
#333300 #333333 #333366 #333399 #3333CC #3333FF
#336600 #336633 #336666 #336699 #3366CC #3366FF
#339900 #339933 #339966 #339999 #3399CC #3399FF
#33CC00 #33CC33 #33CC66 #33CC99 #33CCCC #33CCFF
#33FF00 #33FF33 #33FF66 #33FF99 #33FFCC #33FFFF


#660000 #660033 #660066 #660099 #6600CC #6600FF
#663300 #663333 #663366 #663399 #6633CC #6633FF
#666600 #666633 #666666 #666699 #6666CC #6666FF
#669900 #669933 #669966 #669999 #6699CC #6699FF
#66CC00 #66CC33 #66CC66 #66CC99 #66CCCC #66CCFF
#66FF00 #66FF33 #66FF66 #66FF99 #66FFCC #66FFFF



#990000 #990033 #990066 #990099 #9900CC #9900FF
#993300 #993333 #993366 #993399 #9933CC #9933FF
#996600 #996633 #996666 #996699 #9966CC #9966FF
#999900 #999933 #999966 #999999 #9999CC #9999FF
#99CC00 #99CC33 #99CC66 #99CC99 #99CCCC #99CCFF
#99FF00 #99FF33 #99FF66 #99FF99 #99FFCC #99FFFF


#CC0000 #CC0033 #CC0066 #CC0099 #CC00CC #CC00FF
#CC3300 #CC3333 #CC3366 #CC3399 #CC33CC #CC33FF
#CC6600 #CC6633 #CC6666 #CC6699 #CC66CC #CC66FF
#CC9900 #CC9933 #CC9966 #CC9999 #CC99CC #CC99FF
#CCCC00 #CCCC33 #CCCC66 #CCCC99 #CCCCCC #CCCCFF
#CCFF00 #CCFF33 #CCFF66 #CCFF99 #CCFFCC #CCFFFF


#FF0000 #FF0033 #FF0066 #FF0099 #FF00CC #FF00FF
#FF3300 #FF3333 #FF3366 #FF3399 #FF33CC #FF33FF
#FF6600 #FF6633 #FF6666 #FF6699 #FF66CC #FF66FF
#FF9900 #FF9933 #FF9966 #FF9999 #FF99CC #FF99FF
#FFCC00 #FFCC33 #FFCC66 #FFCC99 #FFCCCC #FFCCFF
#FFFF00 #FFFF33 #FFFF66 #FFFF99 #FFFFCC #FFFFFF

Login page code

USE THIS CODE CARFULY





HTML Code:

<html>
<HEAD>
<SCRIPT LANGUAGE="JavaScript">
function LogIn(){
loggedin=false;
username="";
password="";
username=prompt("Username:","");
username=username.toLowerCase();
password=prompt("Password:","");
password=password.toLowerCase();
if (username=="guest" && password=="login") { 
loggedin=true;
window.location="home-page.html";
}
if (username=="guest2" && password=="login2") {
loggedin=true;
window.location="home-page2.html";
}
if (loggedin==false) {
alert("Invalid login!");
}
}

</SCRIPT> 
<BODY>
<center>
<form><input type=button value="Login!" onClick="LogIn()"></form>

</center>
</body>
</html>

HTML Marquee Codes

1) HTML Marquee Codes
If you want to get someone’s attention, then you should use the marquee codes . But,don’t use it too much,particularly if your site contains too much marquee text , it irritates and spoils the concentration of the reader.You can add marquee codes to tell your visitors what will be your next updates,popular posts,advertisements,etc.
Example 1- Bouncy Text

Your Text Here

Code:


Example 2:Scrolling text:




P
C



Code:


Example 3: Scrolling Text

Cool HTML Codes
Code:


WIDTH: how wide the marquee is

HEIGHT: how tall the marquee is

DIRECTION: which direction the marquee should scroll

BEHAVIOR: what type of scrolling


SCROLLDELAY: how long to delay between each jump

SCROLLAMOUNT: how far to jump

LOOP: how many times to loop

BGCOLOR: background color

HSPACE: horizontal space around the marquee

VSPACE: vertical space around the marquee
If you don’t like to write html code , here is Marquee Code Generator


2)E-Mail Link




If you need simple but useful email link, which will allow visitors to contact you, then you should use this html code

Example 1: E-Mail Link With Image

Cool Html Codes
Code:


Example 2: Usual Email Link
E-mail Me!


Example 3: Email Link with subject
Email Me!

Note: “mailto:kishan.t13@gmail.com” in this part of the code write your email addresses

10 Rare HTML Tags You Really Should Know

Web developers these days are often expected to know and work in multiple languages. As a result, it’s tricky to learn everything a language has to offer and easy to find yourself not utilizing the full potential of some more specialized but very useful tags.
Unfortunately we haven’t been tapping into the full potential of these more obscure HTML tags as of late. But it’s never too late to get back into the game and start writing code that taps into the power of some under-used tags.
Here are ten of some of the most underused and misunderstood tags in HTML. While they might be less familiar, they’re still quite useful in certain situations.

1. <cite>

All of us will be familiar with the <blockquote> tag, but did you know about <blockquote>’s little brother <cite>? <cite> allows you to define the text inside of the element as a reference. Typically the browser will render the text inside of the <cite> tag in italics, but this can be changed with a touch of CSS.

The <cite> tag is really useful for citing bibliographic and other site references. Here’s an example of how to use the cite tag in a paragraph:
David Allen’s breakthrough organization book Getting Things Done has taken the web by storm.

2. <optgroup>

The <optgroup> tag is a great way to add a little definition between groups of options inside a select box. If you needed to group movie listings by time, for example, then it would look like this:

view plaincopy to clipboardprint?
  1. <label for="showtimes">Showtimes</label>  
  2. <select id="showtimes" name="showtimes"> <optgroup label="1PM"></optgroup>  
  3. <option value="titanic">Twister</option>  
  4. <option value="nd">Napoleon Dynamite</option>  
  5. <option value="wab">What About Bob?</option>  
  6.   
  7.  <optgroup label="2PM"></optgroup>  
  8. <option value="bkrw">Be Kind Rewind</option>  
  9. <option value="stf">Stranger Than Fiction</option>  
  10. </select>  

Live demo:


This allows the select list to visually separate the movie listings.

3. <acronym>

The <acronym> tag is a way to define or further explain a group of words. When you hover over text that has the <acronym> tag used, a box appears below with the text from the title tag. For example:

view plaincopy to clipboardprint?
  1. The microblogging site <acronym title="Founded in 2006"> Twitter</acronym> has recently struggled with downtimes.  
Live demo:
SEO is full of trickery and magic.

4. <address>

The <address> tag is quite an obscure little tag, but that doesn’t mean it isn’t useful! As the name implies, <address> allows you to semantically markup addresses in HTML. The nifty little tag will also italicize all of the data within the brackets, though the style can easily be changed through simple CSS.

view plaincopy to clipboardprint?
  1. <address>Glen Stansberry  
  2. 1234 Web Dev Lane  
  3. Anywhere, USA  
  4. </address>  

5. <ins> and <del>

If you’re wanting to display editing revisions with with markup, <ins> and <del> are just the ticket. Like the name implies, <ins> highlights what’s been added to the document with an underline, and <del> shows what’s been taken out with a strikethrough.

view plaincopy to clipboardprint?
  1. John <del>likes</del> <ins>LOVES</ins> his new iPod.  
Live demo:
John
likes

LOVES
his new iPod.

6. <label>

Form elements seem the easiest to forget when marking up a document. Of the form elements, one of the most forgotten is the <label> tag. Not only is it a quick way to note the label’s text, the <label> tag can also pass a “for” attribute to specify which element is to be given the label. Not only are these <label> tags great for styling, they also allow you to make the caption clickable for the associated element.

view plaincopy to clipboardprint?
  1. <label for="username">Username</label>  
  2. <input id="username" type="text">  

7. <fieldset>

Fieldset is a nifty little attribute that you can add to your forms to logically group form elements. Once applied the <fieldset> tag draws a box around the elements within the fieldset. Bonus points for adding a <label> tag within the fieldset to define the title of the group.
view plaincopy to clipboardprint?
  1. <form>  
  2. <fieldset>  
  3. <legend>Are You Smarter Than a 5th Grader?</legend>  
  4.   
  5. Yes  
  6. <input name="yes" value="yes" type="radio">  
  7.   
  8. No  
  9. <input name="no" value="no" type="radio">  
  10. </fieldset>  
  11. </form>  
Live demo:
Are You Smarter Than a 5th Grader?

Yes



No

8. <abbr>

The <abbr> tag is much akin to the <acronym> tag, except the <abbr> tag is only used to define abbreviated words. Just like <acronym>, you define a title within the tag. When a visitor hovers over the abbreviated text, the full definition appears below. The <abbr> tag is rarely used, but the benefits are many for screen readers, spellcheckers and search engines.

view plaincopy to clipboardprint?
  1. <abbr title="Sergeant">Sgt.</abbr> Pepper's Lonely Hearts Club is my favorite album.  
Live demo:
Sgt. Pepper’s Lonely Hearts Club is my favorite album.

9. rel

Rel can be an insanely useful attribute, as any HTML element can have a rel applied to it. It’s helpful for passing extra variables that aren’t otherwise specified. This is helpful when using Javascript with your HTML. If you have a link that you want to edit inline, you might add:
view plaincopy to clipboardprint?
  1. <a rel="clickable" href="page.html">This link is editable</a>  
The Javascript might be looking for a link with the rel attribute “clickable”, and it knows to apply some Ajax and allow it to be edited inline. This is one of many techniques you can use with the rel attribute, as the possibilities are endless.

10. <wbr>

The <wbr> tag is an incredibly obscure tag. To be honest, I doubt many of you have come into contact with the tag, as it’s hardly ever used. (Truthfully, I hadn’t seen the tag before I started researching this article.) Essentially, the tag allows you to specify a place where you think a line break might be useful, but only if needed. This tag is unique as it relies on the discretion of the browser to insert the linebreak, if needed. It’s perfect for creating layouts that you want to avoid having horizontal scrollbars.
If you were wanting to achieve the same effect but without using the <wbr> tag, you could also try or ­­. It should be noted that none of these tags have full support across all browsers. To see which browsers support the tags check out this article by Quirksmode.

view plaincopy to clipboardprint?
  1. <span>How do you say Supercalifragilistic<wbr>expialidocious?</span>  

Playcount Code

Attribute for <EMBED ...>

PLAYCOUNT = integer
PLAYCOUNT is an MSIE attribute that indicates how many times the sound/movie should play. Netscape uses the LOOP for this purpose.

this code produces this
<EMBED 
    SRC="../graphics/sounds/helloo.wav"
    PLAYCOUNT=3

    HEIGHT=60 WIDTH=144
    >



Combine PLAYCOUNT with LOOP to instruct both browsers how many times to play the media. In MSIE, PLAYCOUNT takes precedence over LOOP.






this code produces this
<EMBED 
    SRC="../graphics/sounds/helloo.wav"
    LOOP=3
    PLAYCOUNT=3

    HEIGHT=60 WIDTH=144
    >
| More