-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmedicalcolleges.html
62 lines (58 loc) · 2.59 KB
/
medicalcolleges.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
<!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>Medical 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%);">
<center>
<h1 style="color: mediumblue; font-family: sans-serif ;" > TOP MEDICAL COLLEGES</h1><br>
<ol>
<li><button onclick="window.location.href='https://www.aiims.edu/'"><h2>AIIMS Delhi - All India Institute of Medical Sciences</h2>
<img src="https://upload.wikimedia.org/wikipedia/en/8/85/All_India_Institute_of_Medical_Sciences%2C_Delhi.svg" alt="">
</button></li><br>
<li><button onclick="window.location.href='https://pgimer.edu.in'"><h2>Postgraduate Institute of Medical Education and Research, Chandigarh</h2>
<img src="https://upload.wikimedia.org/wikipedia/en/a/a3/Postgraduate_Institute_of_Medical_Education_and_Research_Logo.png" alt="">
</button></li><br>
<li><button onclick="window.location.href='https://www.cmch-vellore.edu/'"><h2>Christian Medical College, Vellore</h2>
<img src="https://upload.wikimedia.org/wikipedia/en/thumb/6/69/Christian_Medical_College_%26_Hospital%2C_Vellore_Logo.png/220px-Christian_Medical_College_%26_Hospital%2C_Vellore_Logo.png" alt="">
</button></li><br>
<li><button onclick="window.location.href='https://nimhans.ac.in/'"><h2>National Institute of Mental Health and Neurosciences</h2>
<img src="https://upload.wikimedia.org/wikipedia/en/0/0c/Nimhans_logo.png" alt="">
</button></li><br>
<li><button onclick="window.location.href='http://www.sgpgi.ac.in/'"><h2>Sanjay Gandhi Postgraduate Institute of Medical Sciences</h2>
<img src="https://upload.wikimedia.org/wikipedia/en/thumb/a/a5/Sanjay_Gandhi_Postgraduate_Institute_of_Medical_Sciences_Logo.png/220px-Sanjay_Gandhi_Postgraduate_Institute_of_Medical_Sciences_Logo.png" alt="">
</button></li><br>
</ol>
</center>
</body>
</html>