-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathindex.html
54 lines (47 loc) · 2.88 KB
/
index.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
<!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>BASIC TAGS</title>
<style>
body {background-color:#DBDFFD;}
h1 {color:teal;}
</style>
</head>
<body>
<h1 style="text-align: center;"><b>Madan Mohan Malviya University of Technology</b></h1>
<h2 style="text-align: center;">Gorakhpur,UP</h2>
<h3 style="text-align: center;">233010</h3>
<img src="mmmut1.jpg" style="height: 15%; width: 15%; margin-left: 43%;">
<form style="text-align: center;">
<p style="color:darkorange;"><strong>HELLO WORLD !</strong></p><br>
<label>First Name</label><br>
<input type="text"><br>
<label>Last Name</label><br>
<input type="text"><br>
<p style="color:indigo;">Who Are You ??</p>
<input type="checkbox" id="type1" name="type1" value="Student">
<label for="tpe1"> Student</label><br>
<input type="checkbox" id="type2" name="type2" value="Employee">
<label for="type2"> Faculty</label><br>
<input type="checkbox" id="type3" name="type3" value="Worker">
<label for="type3"> Worker</label><br><br>
<button>Submit</button><br><br>
<h1><b><u>About Us</u></b></h1>
<h2><b><u>VISION</u></b></h2>
<p>To facilitate and promote studies, research, technology incubation, product innovation and extension work in Science, Technology and Management Education, and also to achieve excellence in higher technical education.
</p>
<h2><b><u>MISSION</u></b></h2>
<p>The distinctive mission of the University is:</p>
<ul>To serve society as a center of higher learning, providing long-term societal benefits through transmitting advanced knowledge, discovering new knowledge and functioning as an active working repository of organized knowledge.</ul>
<ul>To create an intellectually stimulating Infrastructure and conducive environment for technology research, scholarship, creativity, innovation, entrepreneurship, and professional activity for service to community and economy.
</ul>
<ul>To establish value creating networks and foster relationship with other leading institutes of higher learning and research, alumni and industries in order to provide significant contribution to national and international development.</ul>
<h2><b><u>About</u></b></h2>
<p>Madan Mohan Malaviya University of Technology, Gorakhpur has been established in year 2013 by the Government of Uttar Pradesh in the form of a non-affiliating, teaching and research University after reconstituting the Madan Mohan Malaviya Engineering College, Gorakhpur which was established in 1962.
</p>
</form>
</body>
</html>