programming-examples/html/Form/form_submit_img.html
2019-11-15 12:59:38 +01:00

14 lines
266 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Html5</title>
<meta charset="UTF-8">
</head>
<body>
<form action="">
Name: <input type="text"><br>
E-mail: <input type="text"><br>
<input type="image" src="submit.png" alt="Submit" width="100" height="97">
</form>
</body>
</html>