programming-examples/html/_Basics/Creating buttons.html

11 lines
251 B
HTML
Raw Normal View History

2019-11-15 12:59:38 +01:00
<!DOCTYPE html>
<html subLang="en">
<head>
<title>Example of HTML button</title>
</head>
<body>
<form method="post" action="">
<input type="button" value="Click Me">
</form>
</body>
</html>