-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathengg.html
63 lines (59 loc) · 2.5 KB
/
engg.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
<!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>Engineering Colleges</title>
<style>
img{
height: 200px;
width: 200px;
}
button{
transition: all .5s ease;
width: 70%;
border-radius: 30px;
color:#008080;
font-weight: 600;
background-color: #fff;
border: 1px solid #008080;
margin-top: 1.5em;
margin-bottom: 1em;
}
button:hover, button:focus{
background-color: #008080;
color:white;
}
li{
text-align:center;
}
ol {
list-style-type:none;
}
</style>
</head>
<body style="background-image: linear-gradient(45deg, #93a5cf 0%, #e4efe9 100%);"></body>
<center>
<h1 style="color: mediumblue; font-family: sans-serif ;" > TOP ENGINEERING COLLEGES</h1><br>
<ol>
<li><button onclick="window.location.href='https://www.iitm.ac.in/'"><h2>IIT Madras - Indian Institute of Technology</h2>
<img src="https://upload.wikimedia.org/wikipedia/en/thumb/6/69/IIT_Madras_Logo.svg/1200px-IIT_Madras_Logo.svg.png" alt="">
</button></li><br>
<li><button onclick="window.location.href='https://home.iitd.ac.in/'"><h2>
IIT Delhi - Indian Institute of Technology </h2>
<img src="https://geeksgod.com/wp-content/uploads/2020/03/220px-Indian_Institute_of_Technology_Delhi_logo.png" alt="">
</button></li><br>
<li><button onclick="window.location.href='https://www.iitb.ac.in/'"><h2> IIT Bombay - Indian Institute of Technology </h2>
<img src="https://upload.wikimedia.org/wikipedia/en/thumb/1/1d/Indian_Institute_of_Technology_Bombay_Logo.svg/1200px-Indian_Institute_of_Technology_Bombay_Logo.svg.png" alt="">
</button></li><br>
<li><button onclick="window.location.href='https://www.iitk.ac.in/'"><h2>IIT Kanpur - Indian Institute of Technology</h2>
<img src="https://upload.wikimedia.org/wikipedia/en/thumb/a/a3/IIT_Kanpur_Logo.svg/1200px-IIT_Kanpur_Logo.svg.png" alt="">
</button></li><br>
<li><button onclick="window.location.href='http://www.iitkgp.ac.in/'"><h2>IIT Kharagpur - Indian Institute of Technology</h2>
<img src="https://upload.wikimedia.org/wikipedia/en/thumb/1/1c/IIT_Kharagpur_Logo.svg/1200px-IIT_Kharagpur_Logo.svg.png" alt="">
</button></li><br>
</ol>
</center>
</body>
</html>