Wednesday, 7 May 2014

linking two html pages

Say, ur first html page is webpage.html and other is web.html.
If u want to go from webpage.html page to other page
Just write the following code-


<form action="web.html">
/* comments */
<input type="submit" value="SEND">
</form>

when u click on SEND button, u will be directed to web.html.

No comments:

Post a Comment