making html forms code example
Example 1: html input types
<form>
<input type="button">
<input type="checkbox">
<input type="color">
<input type="date">
<input type="datetime-local">
<input type="email">
<input type="file">
<input type="hidden">
<input type="image">
<input type="month">
<input type="number">
<input type="password">
<input type="radio">
<input type="range">
<input type="reset">
<input type="search">
<input type="submit">
<input type="tel">
<input type="text">
<input type="time">
<input type="url">
<input type="week">
</form>
Example 2: html form
<form action="/action.php">
<label for="fname">First name:</label><br>
<input type="text" id="fname" value="Mike"><br><br>
<label for="lname">Last name:</label><br>
<input type="text" id="lname" value="Walker"><br><br>
<input type="submit" value="Submit">
</form>
Example 3: how to get the input of a textbox in html
<script>
function getTextBox(){
var k = document.getElemntById('myTextBox').value
alert(k)
}
</script>
<input type="text" id="myTextBox">
<button onclick="getTextBox()">Get Text Input</button>
Example 4: intput field submit button
<label for="fname">First name:</label><br>
<input type="text" id="fname" name="fname"><br>