-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
80 lines (71 loc) · 3.38 KB
/
about.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
<?php
session_start();
if (!isset($_SESSION['username'])) {
$_SESSION['msg'] = "You must log in first";
header('location: login.php');
}
if (isset($_GET['logout'])) {
session_destroy();
unset($_SESSION['username']);
header("location: login.php");
}
?>
<!doctype html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Login and Registration Form with HTML5 and CSS3" />
<meta name="keywords" content="html5, css3, form, switch, animation, :target, pseudo-class" />
<meta name="author" content="Codrops" />
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" type="text/css" href="css/demo.css" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link rel="stylesheet" type="text/css" href="css/animate-custom.css" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Motor Vehicles Department</title>
<link href="css/multiColumnTemplate.css" rel="stylesheet" type="text/css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<style>
.w3-button {width:150px;}
</style>
</head>
<body>
<!-- Main Container -->
<div class="container">
<!-- Navigation -->
<header>
<div class="primary_header">
<a href="main.html"><img src="MVDMo_logo.jpg" id="HeaderMain1_DeptLogo" width="84" height="80" align="left"></a><img src="emblem_n.png" id="HeaderMain1_DeptLogo" width="84" height="80" align="right" />
<span id="HeaderMain1_lbl_headTitle" class="title" style="text-align:left"><h1><a href="main.html">Online Learning Licence Application <img src="maharashtralogo.png" id="HeaderMain1_DeptLogo" width="84" height="80" align="right" /> <br><h2>Mumbai</h2></a></h1></span>
</div>
<nav class="secondary_header" id="menu">
<ul>
<li><a href="about.html">About</a></li>
<li><a href="rules.html">Rules</a></li>
<li><a href="contactus.html">Contact Us</a></li>
<li><a href="howtoapply.html">How to Apply</a></li>
<li><a href="login.php">Login<br>SignUp</a></li>
<li><a href="olinks.html">Other Links</a></li>
</ul>
</nav>
</header>
<b>About</b><br>
In order to give effect to the provisions of Motor Vehicles Act,<br>1988 & Rules made there under, Motor Vehicle Department has been setup as per Section 213 of <br> Motor Vehicle Act 1988 in the State of Maharashtra<br>
<b>Vision</b><br>
Safe Transportation of Goods & Passengers<br>
Prompt & Citizen friendly services relating to Motor Vehicles<br>
<b>Mission</b><br>
To aim for stricter compliance of provisions of Motor Vehicle Act & Rules there under<br>
To establish user friendly front end facilities for visiting public<br>
To strengthen the Department by providing equipments, manpower & Training<br>
To simplify the taxation of vehicles<br>
To create effective grievance redressed mechanism<br>
<footer class="secondary_header footer">
<div class="copyright">©2017 - <strong> This is the official website of Motor Vehicles Department, Maharashtra. All Rights Reserved.</strong></div>
</footer>
</div>
</body>
</html>