-
Notifications
You must be signed in to change notification settings - Fork 0
/
MissionVission.html
112 lines (109 loc) · 3.15 KB
/
MissionVission.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
<!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>Mission & Vission</title>
<style>
body{
background-color: rgb(220, 167, 210);
}
*{
margin:0px;
padding:0px;
}
.Bigimg{
width:1421px;
height:220px;
margin:0px auto;
position: relative;
background-image:url('img/manitfront.jpeg');
background-size: cover;
}
.overlay{
width:100%;
height: 100%;
font-size: 15px;
color: rgb(223, 208, 219);
display: flex;
flex-direction:column;
}
h2{
margin:80px 80px;
font-style: oblique;
}
.container {
display: flex;
/* width: 100%; */
}
.paragraph{ font-family: sans-serif;
-webkit-text-size-adjust: 100%;
-webkit-tap-highlight-color: rgba(0,0,0,0);
font-size: 14px;
line-height: 1.42857143;
color: #333;
box-sizing: border-box;}
.tproperty {
position: 200px 300px;
}
table th {
background-color: blue;
border: 3px solid brown;
}
table td {
border: 2px solid;
}
.tablelink {
position: relative;
border: 2px solid black;
width: 150%;
text-align: center;
text-decoration-color: rgb(112, 35, 171);
}
a{
text-decoration: none;
}
a:link{
color:black;
}
a:hover{
color:green
}
a:active{
color: yellowgreen;
}
</style>
</head>
<body>
<div class="Bigimg">
<div class="overlay">
<h2>Mission Vision And Goals</h2>
</div>
</div>
<div class="container">
<div class="paragraph"><p><strong id="mission">Our Vision</strong></p>
<p>“MANIT looks forward to becoming a global centre for technical and professional knowledge”</p>
<p><strong>Mission</strong></p>
<p>“To produce technical professionals abreast with competence,logical mindset,moral and ethical values and inner strength synchronous with the futuristic requirement of global business <br>so as to strengthen the national economy “</p>
</div>
<div class="tproperty">
<table class="tablelink">
<tr>
<th><a href="index.html">Home</a></th>
</tr>
<tr>
<td><a href="homehistory.html">History</a></td>
</tr>
<tr>
<td><a href="AboutUs.html">About Us</a></td>
</tr>
<tr>
<!-- <td>Mission Vision & Goals</td> -->
<td><a href="#mission">Mission Vision & Goals</a></td>
</tr>
</table>
</div>
</div>
</body>
</html>