-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathassignment1.html
72 lines (71 loc) · 2.46 KB
/
assignment1.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!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>Document</title>
</head>
<body>
<h1>Chitkara University</h1>
<p>
Located 30 kms from Chandigarh, Chitkara University offers a world of learning that will help you reach your goals. Choose from our varied industry endorsed programs. Learn from an outstanding faculty at our state-of-the-art teaching facilities. Explore unlimited opportunities to get placed with one of the 1500+ campus recruiters and meet other students with dreams as big as yours.
</p>
<img src="/photo/chitkara.png">
<h1>Cources:</h1><br>
<table>
<thead>
<tr>
<th>Engineering</th>
<th>Science</th>
<th>Commerce</th>
<th>Others</th>
</tr>
</thead>
<tbody>
<tr>
<td>B-Tech in CSE</td>
<td>Bsc in Maths</td>
<td>BBA</td>
<td>Deploma in IT</td>
</tr>
<tr>
<td>B-Tech in ME</td>
<td>Bsc in Chemistry</td>
<td>MBA in Marketing</td>
<td>Deploma in Civil</td>
</tr>
<tr>
<td>Btech in CHE</td>
<td>Bsc in Physics</td>
<td>MBA in Finance</td>
<td>NCC</td>
</tr>
</tbody>
</table>
<h1>Others Service:</h1>
<ol>
<li>Bus</li>
<li>Career Counselling</li>
<li>Sports</li>
<li>Hostels</li>
<li>Restaurants</li>
</ol>
<h1>Enquiry Form:</h1>
<form>
<div>
<p>Name: <input type="text" value="Enter Your Name"></p>
<p>District: <input type="text" value="Enter your district"></p>
<p>State : <input type="text" value="Enter your state"></p>
<p>Age : <input type="text" value="Enter your age"></p>
<p>DOB : <input type="date"></p>
<p>Email : <input type="email" name="" id="" value="Enter your Email"></p>
<p>Gender : Male<input type="radio" name="myGender" id=""> Female<input type="radio" name="myGender" id=""></p>
</div>
<div>
<input type="submit" value="Submit">
<input type="reset" value="Reset">
</div>
</form>
</body>
</html>