Registration page Using HTML - input tags and Button tag - radio Buttons and Checkbox

Registration page Using HTML - input tags and Button tag - radio Buttons and Checkbox

<!DOCTYPE html>
<html>
<head>
<title>index</title>
</head>
<body bgcolor="#0DC8D8">
<h1>register</h1>
<label>enter name:<br></label><input type="text" name="name" placeholder="Enter a Name"><br><br>
<input type="text" name="email" placeholder="Enter e-mail"><br><br>
<input type="password" name="fname" placeholder="create password"><br><br>
<input type="radio" name="gen">MALE
<input type="radio" name="gen">FEMALE<br>
<input type="checkbox" name="">TELUGU
<input type="checkbox" name="">HINDI
<input type="checkbox" name="">ENGLISH<br><br>

<a href="page2.html"><button>Register</button></a>
</body>
</html>

0 Comments