Make 4000 dollars!
HTML code for a back button.
<FORM>
<INPUT TYPE="button" VALUE="Back" onClick="history.go(-1)">
</FORM>
<INPUT TYPE="button" VALUE="Back" onClick="history.go(-1)">
</FORM>
HTML code for a image.
<!DOCTYPE html>
<html>
<body>
<img src="http://i.imgur.com/8SJClxB.jpg" alt="W3Schools.com" width="460" height="85">
</body>
</html>
HTML code for a drop down.
<html>
<body>
<form action="action_page.php">
<select name="cars">
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="fiat">Fiat</option>
<option value="audi">Audi</option>
</select>
<br /><br />
<input type="submit" />
</form>
</body>
</html>
HTML code for a form with a submit button.
If you click the "Submit" button, the form-data will be sent to a page called "action_page.php".
<!DOCTYPE html>
<html>
<body>
<form action="action_page.php">
First name:<br>
<input type="text" name="firstname" value="Mickey">
<br>
Last name:<br>
<input type="text" name="lastname" value="Mouse">
<br><br>
<input type="submit" value="Submit">
</form>
<p>If you click the "Submit" button, the form-data will be sent to a page called "action_page.php".</p>
</body>
</html>
<!DOCTYPE html>
<html>
<body>
<form action="action_page.php">
First name:<br>
<input type="text" name="firstname" value="Mickey">
<br>
Last name:<br>
<input type="text" name="lastname" value="Mouse">
<br><br>
<input type="submit" value="Submit">
</form>
<p>If you click the "Submit" button, the form-data will be sent to a page called "action_page.php".</p>
</body>
</html>
Subscribe to:
Posts (Atom)