PHP FULL TUTORIAL GUIDE by DINNIS MOSES

PHP FULL TUTORIAL GUIDE by DINNIS MOSES

Author:DINNIS MOSES
Language: eng
Format: mobi
Publisher: MICHAEL NAHASHON
Published: 2016-01-14T22:00:00+00:00


Button Controls

There are various ways in HTML to create clickable buttons. You can also create a clickable button using <input> tag by setting its type attribute to button. The type attribute can take the following values:

Here is example HTML code for a form with three types of buttons:

<html>

<head>

<title>button control</title>

</head>

<body>

<form>

<input type="submit" name="submit" value="Submit" />

<input type="reset" name="reset" value="Reset" />

<input type="button" name="ok" value="OK" />

<input type="image" name="imagebutton" src="/html/images/logo.png" />

</form>

</body>

</html>



Download



Copyright Disclaimer:
This site does not store any files on its server. We only index and link to content provided by other sites. Please contact the content providers to delete copyright contents if any and email us, we'll remove relevant links or contents immediately.