-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathumission.php
138 lines (123 loc) · 3.58 KB
/
umission.php
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
126
127
128
129
130
131
132
133
134
135
136
137
138
<?php
session_start();
if(!isset($_SESSION['user'])){
header("location:userlogin.php?problem = not logged in");
exit();
}
?>
<html>
<head>
<title> Mission, Vision, Values</title>
<link rel="stylesheet" type="text/css" href="cssmain\goals.css">
</head>
<style>
#top
{
height:60px;
width:72.75%;
float:right;
border:0px solid black;
padding:0px;
font-family:Gill Sans, Verdana;
text-shadow:2px 2px grey;
}
#content
{
width:94%;
height:501px;
border:0px solid black;
}
#contentleft
{
width:20%
height:501px;
border:0px solid black;
}
#contentright
{
width:60%;
height:501px;
border:0px ;
float:right;
}
</style>
<body>
<div id="wrapper">
<div id="header">
<br>
<a href="userhomepage.php" style="width:0px"><img src="images\sitelogo.png" alt="sitelogo"
style="float:left;width:610px;height:120px;"></a>
<div id="dropdown">
<ul id="drop-nav" style="font-family:Arial;">
<li><a href="userhomepage.php">HOME</a>
</li>
<li><a href="#">MY ACTION</a>
<ul>
<li><a href="books.php">View Books</a></li>
<li><a href="issue.php">My Issue Status</a></li>
</ul>
</li>
<li><a href="#">STUDY RESOURCES</a>
<ul>
<li><a href="usyllabus.php">Syllabus</a></li>
<li><a href="uebooks.php">E-books</a></li>
<li><a href="upapers.php">University Papers</a></li>
<li><a href="uonlinetest.php">Free Online Test</a></li>
</ul>
</li>
<li><a href="#">ABOUT US</a>
<ul>
<li><a href="ugoals.php">Our Goals</a></li>
<li><a href="umission.php">Mission, Vision & Core Values</a></li>
<li><a href="ucontactus.php">Contact Us</a></li>
</ul>
</li>
<li><a href="#">MY ACCOUNT</a>
<ul>
<li><a href="profile.php">View Profile</a></li>
<li><a href="logout.php">Logout</a></li>
</ul>
</li>
</ul>
</div>
</div>
<hr>
<div id="top">
<p style="font-size:35px;text-align:center;">Mission, Vision & Values</p>
</div>
<div id="content">
<div id="contentright">
<dl style="font-size:17px;color:white;font-family:verdana">
<b><i><u><dt style="font-size:20px;">Mission<br></dt></b></i></u>
<dd><ol>
<li>To continue to endorse the Vidyalankar tradition of providing the best of services to the student community</li>
<li>To build on our position of leadership with ethics by providing world-class education to our students</li>
<li>To train technologists capable of thinking, and working strategically and operationally, across the regional and national boundaries</li>
<li>To achieve this vision by providing a stimulating work environment that supports personal growth, individual contribution and team work.</li>
</ol>
</dd>
<b><i><u><dt style="font-size:20px;">Vision<br></dt></u></i></b><br>
<dd>To provide the best of education to the student community through innovative and effective learning methodologies, constant improvement, cultivation of practical skills and unflinching commitment to academic quality.<br></dd>
<br>
<b><i><u><dt style="font-size:20px;">Core values<br></dt></u></i></b><br>
<dd>A set of core values from the guiding force at Vidyalankar. As an institution and as individuals we value:<br>
<ol>
<li>Honesty<br></li>
<li>Excellence<br></li>
<li>Commitment<br></li>
<li>Integrity<br></li>
</ol><br></dd>
</dl>
</ol>
</div>
<div id="contentleft">
<p> <img src="images/misvisval.jpg" alt="goals" style="position:relative;left:40px;top:50px;height:350px;width:400px;"></p>
</div>
</div>
</div>
<div id="footer">
Copyrights(TM) 2014 | Team Ozil 11
</div>
</div>
</body>
</html>