HTML Button Size

Button in HTML is used to submit HTML page.
Understand with Example
The Tutorial illustrate an example from HTML Button size. In this Tutorial we
create a HTML page, which display you HTML Button with
attribute width and height specified.
The <button> tag indicate a push button.
The difference between the element and button created with the input element
is that you can insert a content like image or text inside it.
<html>
<head>
<title>
Button Size
</title>
<body>
<button type="submit" style="height: 25px; width: 100px">submit me</button>
</body>
</html> |

Download Source Code

|