Skip to content

Added some important changes #473

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 36 additions & 11 deletions project.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,48 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="project.css">
<link rel="stylesheet" href="style.css">
</head>
<!-- <link rel="stylesheet" href="project.css"> -->
<body>
<div class="container">
<h1>TRAVEL FORM</h1>
<p></p>
<h1>TRAVEL FORM</h1><br>

<form action="index.php" method="post">
<input type="text" name="name" id="name" placeholder="Enter your name">
<input type="text" name="age" id="age" placeholder="Enter your age" >
<input type="text" name="gender" id="gender" placeholder="Enter your gender">
<input type="text" name="email" id="email" placeholder="Enter your email">
<input type="text" name="phone" id="phone" placeholder="Enter your phone number">
<textarea name="desc" id="desc" cols="30" rows="10" placeholder="Enter your other any information here"></textarea>
<button class="btn">Submit</button>
<p>Name:-</p>
<input type="text" name="name" id="name" placeholder="Enter your name"><br>


<p>Age:-</p>
<input type="number" name="age" id="age" min="00" max="150" placeholder="Enter your age" ><br>


<p>Gender:-</p>
<select name="Gender" id="Gender">
<option value="Choose">Choose your Gender</option>
<option value="Male">Male</option>
<option value="Female">Female</option>
<option value="Other">Other</option>
</select><br>


<p>Email:-</p>
<input type="email" name="email" id="email" placeholder="Enter your email"><br>



<p>Phone No.:-</p>
<input type="number" name="contact" id="contact" min="999999999" max="9999999999" placeholder="Enter your Contact No." ><br>



<p>Address:-</p>
<textarea name="desc" id="desc" cols="30" rows="8" placeholder="Enter your Address"></textarea><br>

<button class="btn">Submit</button>
<!-- <button class="btn">Reset</button> -->
</form>

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