-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaboutus.html
117 lines (106 loc) · 4.01 KB
/
aboutus.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us - PDPM IIITDM Jabalpur</title>
<style>/* General Styles */
body {
margin: 0;
font-family: 'Arial', sans-serif;
line-height: 1.6;
color: #333;
background-color: #f9f9f9;
}
/* Header */
.header {
background-color: #0056b3;
color: #fff;
padding: 20px 0;
text-align: center;
}
.header h1 {
margin: 0;
font-size: 36px;
}
/* Main Content */
.content {
padding: 20px 0;
}
.about-section {
background-color: #fff;
margin: 20px auto;
padding: 20px;
max-width: 800px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.about-section h2 {
color: #0056b3;
margin-bottom: 20px;
font-size: 28px;
text-align: center;
}
.about-section p {
margin-bottom: 16px;
line-height: 1.8;
text-align: justify;
font-size: 16px;
}
/* Footer */
.footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 10px 0;
}
.footer p {
margin: 0;
font-size: 14px;
}
/* Utility */
.container {
width: 90%;
max-width: 1200px;
margin: 0 auto;
}
</style>
</head>
<body>
<header class="header">
<div class="container">
<h1>About Us</h1>
</div>
</header>
<main class="content">
<section class="about-section">
<div class="container">
<h2>PDPM IIITDM Jabalpur</h2>
<p>
PDPM IIITDM Jabalpur was the third Indian Institute of Technology, established on January 24, 2005 by the Ministry of Education (India) under Madhya Pradesh Society Registration Act 1973.
</p>
<p>
The foundation stone of the Institute was laid by Late Shri Arjun Singh, the then Minister of Human Resource Development (MHRD) on February 7, 2005.
</p>
<p>
On May 3, 2006, a land of 250 acres near Dumna Airport of Jabalpur was identified by the State Government of Madhya Pradesh and was handed over to the Institute. Construction work of Phase I buildings was started in 2007 and was completed in 2009.
</p>
<p>
The first academic session of PDPM IIITDM Jabalpur started from August 2005 from the campus of Jabalpur Engineering College until its own permanent campus was ready. The Institute started operating from the temporary location at the IT Bhawan of the Jabalpur Engineering College. Professor Sanjay G. Dhande, Director, IIT Kanpur was given the additional charge as the Director of the Institute.
</p>
<p>
The institute was allotted 260 acres (1.1 km²) in close proximity to the Jabalpur Airport and Dumna Nature Reserve Park, in 2006 following the appointment of Dr. Sanjeev Bhargava as director.
</p>
<p>
Construction of the Phase-I buildings (Core-Lab-Complex and Residential-Hostels) started thereafter and was completed in June 2009.
</p>
</div>
</section>
</main>
<footer class="footer">
<div class="container">
<p>© 2024 PDPM IIITDM Jabalpur. All rights reserved.</p>
</div>
</footer>
</body>
</html>