-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.html
125 lines (103 loc) · 3.86 KB
/
home.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
118
119
120
121
122
123
124
125
<!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>
<style>
body h1{
text-align: center;
font-weight: bolder;
font-size: 60px;
}
.content{
display: block;
color:rgb(211, 14, 0);
}
</style>
</head>
<body >
<h1>Welcome to DPS Ranchi</h1>
<div class="content">
<div class="aboutSchool">
<h3>About School</h3>
<p>
The ‘Beau Voyage’ of Delhi Public School, Ranchi began on 1st July 1989 in the SAIL Township of Ranchi. The school aims at nurturing the innate potential of the students and mould them into passionate, committed, sensitive, value based individuals with leadership qualities. The school is a co-educational English medium Senior Secondary school recognized by the Directorate of Education and affiliated to Central Board of Secondary Education under All India 10+2 pattern in both science and commerce streams. It is managed by the Delhi Public School Society, New Delhi, a registered body under the Indian Societies Registration Act of 1860 with eminent educationists and philanthropists. DPS Ranchi is a 29 years school with a difference.
</p>
</div>
<div class="faculty">
<table>
<th><h3>Faculty Details</h3></th>
<tr>
<th>Department- Physics</th>
</tr>
<tr>
<td>Faculty Name</td>
<td>Faculty ID</td>
</tr>
<tr>
<td>Anju D</td>
<td>2345</td>
</tr>
<tr>
<td>Nilofar Ghajala</td>
<td>2346</td>
</tr>
<tr>
<td>Rajkiran Singh</td>
<td>2347</td>
</tr>
<tr>
<td>Dr. Ram Singh</td>
<td>2348</td>
</tr>
<th>Department- Mathematics</th>
</tr>
<tr>
<td>Faculty Name</td>
<td>Faculty ID</td>
</tr>
<tr>
<td>S.N Jha</td>
<td>1345</td>
</tr>
<tr>
<td>Dr. R.N Singh</td>
<td>1346</td>
</tr>
<tr>
<td>Dr. Rajesh Ranjan</td>
<td>1347</td>
</tr>
<tr>
<td>Sumitra S</td>
<td>1348</td>
</tr>
<th>Department- English</th>
</tr>
<tr>
<td>Faculty Name</td>
<td>Faculty ID</td>
</tr>
<tr>
<td>Abhijeet Kumar Aich</td>
<td>3345</td>
</tr>
<tr>
<td>Dr. N.K Suman</td>
<td>3346</td>
</tr>
<tr>
<td>Chandrima Samantha</td>
<td>3347</td>
</tr>
<tr>
<td>Joseph Alzari</td>
<td>3348</td>
</tr>
</table>
</div>
</div>
</body>
</html>