The <input> Element

Type Description
Radio Button A radio button is displayed as a cicle and displayed a dot in the midle when selected
Check Box A check box is a small box with a check mark in it and a user either select or clear it by a click
A Selection Option The <select> tag defines the control for selection of option and creates a drop-down list.The <option> tags inside the <select >
element define the available options in the list.

HTML Example:

<!Doctype html >
<html>
<Center>
<head>
<title>Docoment title</title>
</head>
<body background="bgimage.jpg">
<h1>Create a new account </h1>
First Name:<Input type="text" name="first name" required placeholder="Yours First Name">
Last Name:<Input type="text" name="last name" required placeholder="Yours Last Name">
E-mail:<input type="text" required placeholder="abc"@gmail.com>
Gender:Male<input type="radio" name="gender" value="Male">Female<input type="radio" name="gender" value="Female" > Other<input type="radio" name="gender" value="Other">
Language Known:English<input type="checkbox" name="language known" value="English">Bengali<input type="checkbox" name="language known" value="Bengali"> Hindi<input type="checkbox" name="language known" value="Hindi">
Country:<select> <option>India</option> <option>Srilanka</option> <option>Americagt;/option</option> <option>Bangladesh</option> <option>Australia</option> <option>Austria</option> </select> Password:<input type="password" required placeholder="***********">
<input type="button" value="submit">
</body>
</Center>
</html>

Submit Button

Defines a submit button (for submitting the form)