-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtask.html
More file actions
66 lines (60 loc) · 1.82 KB
/
task.html
File metadata and controls
66 lines (60 loc) · 1.82 KB
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
<html>
<head>
<title>task of html </title>
</head>
<body>
<table width="100%" border="0" cellpadding="10" bgcolor="orange">
<tr>
<td align="center">
<h2>Welcome to Dr. Jaimin Dave Webpage</h2>
<p>Employee Id: 07 (Seven)</p>
<a href="#">Home</a> |
<a href="#">About Us</a> |
<a href="#">Services</a> |
<a href="#">Contact</a>
</td>
</tr>
</table>
<table width="100%" border="0" cellpadding="10">
<tr valign="top">
<td width="25%">
<h3>Latest News:</h3>
<ol>
<li>New Admissions 2024</li>
<li>Annual Cultural Event from 30 Sept to 5 Oct 2024</li>
<li>Seminar on AI - 15th Oct</li>
</ol>
</td>
<td width="50%">
<h3>About Our Institute</h3>
<p>At Government MCA College, Maninagar, we provide high quality education...</p>
<h3>Our Mission</h3>
<p>We aim to produce skilled professionals...</p>
<h3>Contact Us</h3>
<form>
Name: <input type="text"><br><br>
Email: <input type="text"><br><br>
Message:<br>
<textarea rows="4" cols="40"></textarea><br><br>
<input type="submit" value="Submit">
</form>
</td>
<td width="25%">
<h3>Important Links:</h3>
<ul>
<li><a href="#">SPU</a></li>
<li><a href="#">UGC</a></li>
<li><a href="#">AICTE</a></li>
</ul>
</td>
</tr>
</table>
<table width="100%" bgcolor="green" cellpadding="10">
<tr>
<td align="center">
<font color="white">© 2024 Government MCA College, Maninagar. All Rights Reserved</font>
</td>
</tr>
</table>
</body>
</html>