Untitled

 avatar
unknown
html
14 days ago
1.8 kB
4
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="style.css">
    <title>Document</title>
</head>
<body>
    <div class="scard">
        <h2>Sign Up</h2>
     
     <div class="fname">
        <label for="fname">Full name:</label>
        <input type="text" id="fname">
   </div>

   <div class="email">
        <label for="email">Email:</label>
        <input type="email" id="email" required>
</div>

<div class="uname">
        <label for="uname">User name:</label>
        <input type="text" id="uname" maxlength="16">
</div>

<div class="phone">
        <label for="phone">Phone:</label>
        <input type="tel" id="phone" pattern="01[0-9]{9}">
</div>

<div class="country">
        <label for-"country">Country</label>
        <select id="country">
            <option>Bangladesh</option>
            <option>China</option>
            <option>Afghanistan</option>
            <option>Pakistan</option>
        </select>
</div>

<div class="gender">
        <label for="gender">Gender:</label>
        <input type="radio" id="gender" name="Gender">Male
        <label for="gender"></label>
        <input type="radio" id="gender" name="Gender">Female
</div>

<div class="password">
        <label for="password">Password</label>
        <input type="password" id="password" minlength="8" maxlength="18">
</div>

    <div class="cpassword">
          <label for="cpassword">Confirm Password</label>
        <input type="password" id="cpassword" minlength="8" maxlength="18">
    </div>
      
    <div>
        <input type="submit">
    </div>
    </div>
</body>
</html>
Leave a Comment