<%include file="header.html" title="How to Get Rated" meta_keywords="" meta_description="" %>
How to Get Rated

You may be interested to put rating box 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 @ <%$site_name%>



HTML code:
<font size="2" face="arial">
<a href="<%$site_url%>/detail.php?id=<%$id%>">
Rate this Website @ <%$site_name%></a>
</font>


Drop Down Menu #1

If you like our website, please rate it at <%$site_name%>



HTML code:
<div align="center">
<font size="2" face="arial">
<form action="<%$site_url%>/rating.php">
<input type="hidden" name="id" value="<%$id%>" />

<p><b>If you like our website, please rate it at <a href="<%$site_url%>"><%$site_name%></a></b>
<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
@ <%$site_name%>


HTML code:
<form action="<%$site_url%>/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"><b>Rate our website <br>@ <a href="<%$site_url%>"><%$site_name%></a></b></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
@ <%$site_name%>
   Excellent!
   Very Good
   Good
   Fair
   Poor


HTML code:
<form action="<%$site_url%>/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"><b>Rate our website <br>@ <a href="<%$site_url%>"><%$site_name%></a></b></div>
</td>
</tr>
<tr>
<td >
<font size="2" face="arial">
&nbsp;<input type="radio" name="rating" value="5" checked="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>
</form>


<%include file="footer.html"%>