HTML (39)
Create Basic form
<html>
<head>
<title>My Page</title>
</head>
</body>
<h1>Form</h1>
<form>
Name <input type="text" placeholder="Enter Name"></input>
<br>
<br>
Email <input type="text" placeholder="Enter E-mail"></input>
<br>
<br>
Password <input type="password" placeholder="Password"></input>
<br>
<br>
Gender <input type="radio" name="gender">Male</input>
<input type="radio" name="gender">Female</input>
<br>
<br>
<button type="submit" value="submit">Submit</button>
</form>
</body>
</html>
<head>
<title>My Page</title>
</head>
</body>
<h1>Form</h1>
<form>
Name <input type="text" placeholder="Enter Name"></input>
<br>
<br>
Email <input type="text" placeholder="Enter E-mail"></input>
<br>
<br>
Password <input type="password" placeholder="Password"></input>
<br>
<br>
Gender <input type="radio" name="gender">Male</input>
<input type="radio" name="gender">Female</input>
<br>
<br>
<button type="submit" value="submit">Submit</button>
</form>
</body>
</html>
0 Comments