Horje
How to create HTML Input Type Button

<input type="button"> defines a button:


How is to look HTML Input Type Button

<input type="button" onclick="alert('Hello World!')" value="Click Me!">

Full Example of HTML Input Type Button

Input Button
index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>

<h2>Input Button</h2>

<input type="button" onclick="alert('Hello World!')" value="Click Me!">

</body>
</html>

Output should be:

Full Example of HTML Input Type Button





Category:
Web Tutorial
Sub Category:
HTML Input Types
Uploaded by:
Admin


Read Article
https://develop.horje.com/learn/1434/reference