<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>College Admission Form</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>College Admission Form</h1>
<form id="admissionForm">
<div class="form-group">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
</div>
<div class="form-group">
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
</div>
<div class="form-group">
<label for="phone">Phone:</label>
<input type="tel" id="phone" name="phone" required>
</div>
<div class="form-group">
<label for="course">Select Course:</label>
<select id="course" name="course" required>
<option value="">Select</option>
<option value="B.Tech">B.Tech</option>
<option value="B.Arch">B.Arch</option>
<option value="B.Com">B.Com</option>
<option value="B.Sc">B.Sc</option>
</select>
</div>
<button type="submit">Submit</button>
</form>
<div id="message"></div>
</div>
<script src="script.js"></script>
</body>
</html>