Mimic the Google's homepage
http://www.google.com.ph/ using html
Use this link to insert Google's logo
http://www.google.com.ph/intl/en_com/images/logo_plain.png
Copyright symbol code --> ©
Use the following code to display forms in the page:
<div align="center">
<form id="form1" name="form1" method="post" action="">
<label>
<input name="textfield" type="text" size="60" />
</label>
<br />
<label> </label>
<table width="51%" border="0">
<tr>
<td>
<div align="right">
<input type="submit" name="Submit" value="Search Google" />
</div></td><td>
<div align="left">
<input type="submit" name="Submit2" value="I'm Feeling Lucky" />
</div></td></tr>
</table>
<label>
Search:
<input name="radiobutton" type="radio" value="radiobutton" checked="checked" />
the Web</label>
<label>
<input name="radiobutton" type="radio" value="radiobutton" />
pages from Philippines</label>
</form>
</div>