How to Use HTML Registration Forms Step-by-Step (Beginner Friendly Guide 2026)

Registration Form
 

Responsive Register Form design using HTML 


Source Code :-

HTML  Source code:- 


<Doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" cont
ent="width=device-width, initial-scale=1.0">
    <link rel="stylesheet"
href="css/bootstrap.css">
    <title>Registration page</title>
   </head>
<body>
    <div class="col-md-4 bg-white
shadow-lg mx-auto mt-5 p-3">

    <h3 class="text-center text-primary">
Registration Form</h3>
    <Form>
        <label>Name</label>
        <input type="text" name="Name"
required value=""class="form-control">
       <label>Mobile  Number</label>
       <input type="text" name="mobile num"
required value="" class="form-control">
       <label>Address</label>
       <input type ="text" name="addr"
required value="" class="form-control">
       <label>Email</label>
       <input type="email" name="em"
required value="" class="form-control">
       <label>Password</label>
       <input type="pass" name="pws"
required value="" class="form-control">
       
       <div class="text-center">
        <input type ="submit"
value="Register" name="b1"
        class=" mt-1 btn btn-primary">            
</div>
         
   </div>

    </form>
    </div>
</body>
</html>

Responsive Registration Form page  design using HTML



Responsive Register Page  design using HTML



Related Post :-

php program factorial number program

php syntax

php data type

Comments

Popular posts from this blog

HTML Tag

HTML Input Type Submit Syntax and Example

CSS Text Color Explained with Syntax and HTML Examples