form for trip

 <!DOCTYPE html>

<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Forms</title>
</head>

<body>
    <h2>Form For Journy to the Nanital</h2>
    <form action="backend.php">
        <label for="name">Name</label>
        <div>
            <input type="text" name="myName" id="name">
        </div>
        <br>
        <div>
            Role: <input type="text" name="myRole">
        </div>
        <br>
        <div>
            Email: <input type="email" name="myEmail">
        </div>

        <br>
        <div>
            Date:<input type="date" name="myDate">
        </div>

        <br>
        <div>
            Bonas:<input type="number" name="mybonas">
        </div>
        <br>
        <div>
            Are you eligible?<input type="checkbox" name="myEligibility">
        </div>
        <br>
        <div>
            Gender: Male <input type="radio" name="myGender">Female<input type="radio" name="myGender"> Other <input
                type="radio" name="myGender">
        </div>
        <br>
        <div>
            write about yourself: <textarea name="myText" cols="30" rows="10"></textarea>
        </div>
        <br>
        <div>
            <label for="car">Car</label>
            <select name="myCar" id="car">
                <option value="Indica">Indica</option>
                <option value="BMW">BMW</option>
                <option value="ODI">ODI</option>
            </select>
        </div>
        <br>
        <div>
            <input type="submit" value="submit Now">
            <input type="reset" value="reset Now">
        </div>




    </form>
</body>

</html>

Comments

Popular posts from this blog

priority_queue

Alignment in css

Queue data structure in c++