Regist1 HTML
Regist1 HTML
Regist1 HTML
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>
</div>
</body>
</html>