Maelezo ya aina mbalimbali za input (text, email, number, radio, checkbox, select) na jinsi zinavyotumika kwenye forms za registration.
🌍 https://www.faulink.com • 📞 +255 693 118 509
Tags:
HTML Inputs, radio button, checkbox, select, form inputs, faulink
Keywords:
html input types, radio buttons example, checkbox form, select dropdown
Code (save as video18.html)
<!DOCTYPE html>
<html lang="sw">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Form Inputs - Faulink</title>
</head>
<body>
<h1>Form Inputs Examples</h1>
<form>
<label>Full Name: <input type="text" name="fullname" required></label><br>
<label>Age: <input type="number" name="age" min="5" max="100"></label><br>

<p>Gender:</p>
<label><input type="radio" name="gender" value="male"> Mwanaume</label>
<label><input type="radio" name="gender" value="female"> Mwanamke</label><br>

<p>Interests:</p>
<label><input type="checkbox" name="interests" value="coding"> Coding</label>
<label><input type="checkbox" name="interests" value="excel"> Excel</label><br>

<label>Class:
<select name="class">
<option value="form1">Form 1</option>
<option value="form2">Form 2</option>
</select>
</label><br>

<button type="submit">Send</button>
</form>
</body>
</html>