0% found this document useful (0 votes)
18 views2 pages

Regist1 HTML

Uploaded by

KundiLokesh
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
18 views2 pages

Regist1 HTML

Uploaded by

KundiLokesh
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

<!

DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style1.css">
</head>
<body>
<div class="container">
<h2>Registration Form</h2>
<div class="form-container">
<form action="">
<div class="input-name">
<label for="">Full Name</label>
<input type="text" placeholder="first Name" class="name">
</div>
<div class="input-name">
<label for="">Last Name</label>
<input type="text" placeholder="Last Name" class="name">
</div>
<div class="input-name">
<label for="">Email</label>
<input type="email" placeholder="email" class="name">
</div>
<div class="input-name">
<label for="">Password</label>
<input type="password" placeholder="password" class="name">
</div>
<div class="input-name">
<label for="">Confrom Password</label>
<input type="password" placeholder="conform password"
class="name">
</div>
<div class="input-name">
<input type="radio" class="radio-button" name="r1">
<label for="">Male</label>

<input type="radio" class="radio-button" name="r1">


<label for="">Female</label>
</div>
<div class="input-name">
<select class="country">
<option value="">Select a country</option>
<option value="">USA</option>
<option value="">Singapore</option>
<option value="">Australia</option>
<option value="">Pakistan</option>
<option value="">India</option>
</select>
</div>
<div class="input-name">
<input type="checkbox" class="check-button">
<label for="">I accept the terms and condition</label>
</div>
<div class="input-name">
<input type="submit" class="button" value="Register">
</div>
</form>
</div>

</div>

</body>
</html>

You might also like