Today's day 2 Goal is to get input from user:
what to do to get Input from user in html?
- Yes, the answer is use
<input
html element to get user input.
what to do to get Input type time from user in html?
Yes, the answer is use
type="time"
attribute.The following code I used to give it an attributes
<input type="time" name="full_backup" id="a">
what to do to get button?
- Use
input
element withbutton
attribute.
<input type="button" value="cal" size="1">
my code is vscode:
Conclusion: Today on Day 2 on building an idea, I successfully completed to get user input in html.