Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
paradox-prakhar authored Sep 24, 2024
1 parent a5e8081 commit 2e0ddb0
Showing 1 changed file with 79 additions and 0 deletions.
79 changes: 79 additions & 0 deletions myproject.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My project</title>
<link rel="stylesheet" href="style_project.css" <meta charset="UTF-8">

<style>
/* Simple styling for the form */
.container {
max-width: 500px;
margin: auto;
}

.thank-you-message {
display: none;
color: green;
}
</style>
</head>

<body>
<!-- <div id="myproject">
<!-- <h1 ><b> My Project</b></h1> -->
<!-- </div> -->

<div class="container">
<h1>Your Institutional Details</h1>

<div class="thank-you-message" id="thankYouMessage">
<h2>Thank you for your submission!</h2>
<p id="submittedDetails"></p>
</div>

<form id="myForm">
<label for="name">Name: </label>
<input type="text" name="name" id="name" placeholder="write your name" required><br>

<label for="Fathername">Father Name: </label>
<input type="text" name="Fathername" id="Fathername" placeholder="your father name" required><br>

<label for="rollno">Roll NO: </label>
<input type="text" name="rollno" id="rollno" placeholder="write your rollno" required><br>

<label for="DOB">Date Of Birth: </label>
<input type="date" name="DOB" id="DOB" required><br>


<label>Your Gender:</label>
<label for="male">Male:
<input type="radio" name="Gender" id="male" value="male" required>
</label>

<label for="female"> female:
<input type="radio" name="Gender" id="female" value="female" required>
</label>

<label for="Institution">Intitution name </label>
<input type="text" name="Institution" id="Institution" placeholder="institution name"><br>

<label for="course">Course Detalis: </label>
<select id="course" name="course" required>
<option value="B.tech">B.tech</option>
<option value="M.tech">M.tech</option>
<option value="BBA">BBA</option>
<option value="MBA">MBA</option>
</select><br>

<input type="submit" value="submit">

</form>

</div>
<script src="submit02.js"></script>
</body>

</html>

0 comments on commit 2e0ddb0

Please sign in to comment.