To include the IRFCA Server logo on your web page, please add the following HTML code to your page. You can just copy and paste the red text below. Please add it to the top left corner of your page. The HTML code shown also sets up a hyperlink so that clicking on the logo will take the reader to the main page of the IRFCA Server.
Note: It is important that you reference the image through the URL as shown below, so that any changes to it are reflected immediately on your pages. So, please do not keep a copy of the image on your own web site to use on your pages.
<!------- IRFCA LOGO START------->
<a href="http://www.irfca.org">
<img border="1" src="/img/brand.gif"
alt="Main page of the IRFCA Server" />
</a>
<!------- IRFCA LOGO END------->
As an example, to include the logo at the left with a title on the right, you could wrap it in a table with one row and two cells in it:
<table border="0">
<tr valign="middle">
<td>
<!------- IRFCA LOGO START------->
<a href="http://www.irfca.org">
<img border="1" src="/img/brand.gif"
alt="Main page of the IRFCA Server" />
</a>
<!------- IRFCA LOGO END------->
</td>
<td><strong>This is my title!</strong> </td>
</tr>
</table>
A sign-up box for IRFCA like the one shown can be created by using the HTML code provided below. The code creates an HTML form which takes the viewer straight to the sign-up page on Yahoo Groups with the e-mail address supplied, when the 'Join now!' button is clicked.
<!------- IRFCA SIGNUP START------->
<form method="get" target="_blank" action="http://groups.yahoo.com/subscribe/irfca">
<p class="signbox">Join the <strong>IRFCA</strong> Mailing List
<input type="text" name="user" size="19" value=" your e-mail address" class="text"/>
<input type="submit" class="button" value="Join now!" />
</p>
</form>
<!------- IRFCA SIGNUP END------->