I have been asked to make a tool which customizes the Height ,Width, align and src attributes of the img/ad element.So what are the different ways to make this tool.The requirement is to changes the query parameters according to the need so as to modify the html for e.g http://swaraj.c/Sites/ad.html?height ="720"&width="90"&align="bottom"&src ="ad.jpeg"
So will this require a form with all these fields which when "POST"ed will change the file or is there any other way to do this ie just change the URL and customize the ad.html pasted below.
<HTML>
<HEAD>
<TITLE>Your Title Here</TITLE>
</HEAD>
<BODY BGCOLOR="FFFFFF">
<CENTER><IMG SRC="ad.jpeg" ALIGN="BOTTOM" width ="1000" height = "150"> </CENTER>
<HR>
<a href="http://somegreatsite.com">Link Name</a>
is a link to another nifty site
<H1>This is a Header</H1>
<H2>This is a Medium Header</H2>
Send me mail at <a href="mailto:support@yourcompany.com">
support@yourcompany.com</a>.
<P> This is a new paragraph!
<P> <B>This is a new paragraph!</B>
<BR> <B><I>This is a new sentence without a paragraph break, in bold italics.</I></B>
<HR>
</BODY>
</HTML>