programming-examples/html/_Basics/Creating buttons.html
2019-11-15 12:59:38 +01:00

11 lines
251 B
HTML

<!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>