How to Get Rated from Your Website

If you have the resource listed here, you may be interested to put remote rating from your own website. This will allow you to have more votes from your visitor. You can choose from several ways listed below:

Text Links

Rate this Website @ INDEXU.COM

HTML code:

<font size=2 face="arial">
<a href="http://www.yourdomain.com/detail.php?id=<%id%>">
Rate this Website @ INDEXU.COM</a>
</font>

Drop Down Menu #1

>

If you like our website, please rate it at INDEXU.COM

HTML code:

<div align=center>
<font size=2 face="arial">
<form action=http://www.yourdomain.com/rating.php>
<input type=hidden name=id value=<%id%>>

<p><strong>If you like our website, please rate it at <a href="#">INDEXU.COM</a></strong>
<p>
<select name=rating>
<option value='5'>Excellent!</option>
<option value='4'>Very Good</option>
<option value='3'>Good</option>
<option value='2'>Fair</option>
<option value='1'>Poor</option>
</select>
<input type=submit value=Vote>
</form>
</font>
</div>

Drop Down Menu #2

>
Rate our website
@ INDEXU.COM

HTML code:

<form action=http://www.yourdomain.com/rating.php>
<input type=hidden name=id value=<%id%>>
<table width=120 bgcolor="#8080C0">
<tr>
<td bgcolor="#C0C0C0">
<div align=center><font size=2 face="arial"><strong>Rate our website <br>@ INDEXU.COM </strong></div>
</td>
</tr>
<tr>
<td align=center>
<div align=center>
<font size=2 face="arial">
<select name=rating>
<option value='5'>Excellent!</option>
<option value='4'>Very Good</option>
<option value='3'>Good</option>
<option value='2'>Fair</option>
<option value='1'>Poor</option>
</select>
</div>
</td>
</tr>
<tr>
<td align=center>
<font size=2 face="arial">
<div align=center><input type=submit value=" Vote "></div></td>
</tr>
</table>
</form>

Radio Button Menu

>
Rate our website
@ INDEXU.COM
   Excellent!
   Very Good
   Good
   Fair
   Poor

HTML code:

<form action=http://www.yourdomain.com/rating.php>
<input type=hidden name=id value=<%id%>>
<table width=120 bgcolor="#8080C0">
<tr>
<td bgcolor="#C0C0C0">
<font size=2 face="arial">
<div align=center><strong>Rate our website <br>@ INDEXU.COM </strong></div>
</td>
</tr>
<tr>
<td >
<font size=2 face="arial">
&nbsp;<input type=radio name=rating value=5 checked>&nbsp;&nbsp;Excellent!<br>
&nbsp;<input type=radio name=rating value=4>&nbsp;&nbsp;Very Good<br>
&nbsp;<input type=radio name=rating value=3>&nbsp;&nbsp;Good<br>
&nbsp;<input type=radio name=rating value=2>&nbsp;&nbsp;Fair<br>
&nbsp;<input type=radio name=rating value=1>&nbsp;&nbsp;Poor
& </td>
</tr>
<tr>
<td align=center>
<font size=2 face="arial">
<div align=center><input type=submit value=" Vote "></div></td>
</tr>
</table>