learn HTML Button Input Type Step by Step
What is the button Tag html
★The HTML button input type is used to create a clickable button on a web page. It is written using the
<input> tag with the type set to "button".★ This button does not perform any action by default,
but it can be connected with JavaScript to perform tasks like showing messages, submitting data, or triggering events
★ Buttons are created as the final component of any form. A button lets the user trigger son events like submission of data, upload/download or any kind of alert/message.
Syntax :
<input type="button" value ="click Me">
Explanation :
type ="button" ➡ defines the button
value ="click me" ➡ sets the next on the button
onclick ➡ adds action when the button is clicked
Learn HTML Button Input Type Step by Step
program
<!DOCTYPE html>
<html>
<body>
<h2>Input Button</h2>
<input type="button" onclick="alert("Hello World!") value="Click Me!">
</body>
</html>
Learn HTML Button Input Type Step by Step
Explain Program
Explain Program
Step 1 ]
<!DOCTYPE html>
- document type declaration.
- browser help this is an HTML5 document.
Step 2 ]
. <html> ... </html>
- root element of the HTML document.
- <html> tag is part of the web page.
Step 3 ]
<body> ... </body>
- HTML document that holds visible content
on the page.
- A
heading (<h2>)
- An
input button (<input type="button">)
- list tag
- ext...
Step 4 ]
. <h2>Input Button</h2>
- heading tag.
- heading tag Displays the text "Input Button" on the page.
- <h2> instead of <h1>
- <h1> use for the main title.
- <h2> subheading
Step 5]
<input type="button" >
- input element of type button.
- Renders a clickable button.
learn HTML Button Input Type Step by Step
output
output
Related Post:-

Comments
Post a Comment