Hi all,
I'm using ethernet shield with arduino UNO. I have a question concerning the html code for the webpage. I've made a webpage using Microsoft front page .. but when i copy it's html code into the arduino, it doesn't work. So is there any rules or different syntax i should use to use the front page code into the arudino.
My page includes a picture, title, two interactive buttons. One button should take me to a page where i get readings from a zigbee to the arduino. The other button should take me to a page where i can change some settings in my system. I also need to know what should i change in the interactive button code in order to read the click.
This is the front page code :
<html>
<body onload="FP_preloadImgs(/*url*/'buttonD.jpg',/*url*/'buttonE.jpg',/*url*/'button10.jpg',/*url*/'button11.jpg')">
<table border="0" width="100%">
<tr>
<td width="324">
<img border="0" src="home%20automation%20logo.png" width="315" height="106"></td>
<td> <font color="#01369A" face="Calibri" size="6">
Welcome to your Home Automation Page</font></td>
</tr>
<tr>
<td width="324">
<p align="center">
<img border="0" id="img1" src="buttonC.jpg" height="63" width="191" alt="Get Readings" onmouseover="FP_swapImg(1,0,/*id*/'img1',/*url*/'buttonD.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img1',/*url*/'buttonC.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img1',/*url*/'buttonE.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img1',/*url*/'buttonD.jpg')" fp-style="fp-btn: Embossed Tab 1; fp-font-size: 14" fp-title="Get Readings"></p>
<p align="center"><a href="change_settings.htm">
<img border="0" id="img2" src="buttonF.jpg" height="63" width="191" alt="Change Settings" onmouseover="FP_swapImg(1,0,/*id*/'img2',/*url*/'button10.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img2',/*url*/'buttonF.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img2',/*url*/'button11.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img2',/*url*/'button10.jpg')" fp-style="fp-btn: Embossed Tab 1; fp-font-size: 14" fp-title="Change Settings"></a></td>
<td>
<img border="0" src="home%20page.jpg" width="713" height="532"> </td>
</tr>
</table>
</body>
</html>