-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathartscolleges.html
63 lines (59 loc) · 2.46 KB
/
artscolleges.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>ARTS 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 ARTS AND SCIENCE COLLEGES</h1><br>
<ol>
<li><button onclick="window.location.href='http://www.hinducollege.ac.in/'"><h2>Hindu College, University of Delhi</h2>
<img src="https://upload.wikimedia.org/wikipedia/en/thumb/2/2f/Hindu_College%2C_Delhi_shield.svg/1200px-Hindu_College%2C_Delhi_shield.svg.png" alt="">
</button></li><br>
<li><button onclick="window.location.href='https://www.ststephens.edu/'"><h2>
St. Stephen's College, University of Delhi </h2>
<img src="https://upload.wikimedia.org/wikipedia/commons/1/1c/St.-Stephens-College-Official-Logo.png" alt="">
</button></li><br>
<li><button onclick="window.location.href='https://www.mirandahouse.ac.in/'"><h2> Miranda House, University of Delhi </h2>
<img src="https://upload.wikimedia.org/wikipedia/en/thumb/9/97/Miranda_House_seal.svg/1200px-Miranda_House_seal.svg.png" alt="">
</button></li><br>
<li><button onclick="window.location.href='https://lsr.edu.in/'"><h2>Lady Shri Ram College for Women, University of Delhi</h2>
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Lady_Shri_Ram_College_for_Women.svg/200px-Lady_Shri_Ram_College_for_Women.svg.png" alt="">
</button></li><br>
<li><button onclick="window.location.href='http://mcc.edu.in/'"><h2>MCC - Madras Christian College</h2>
<img src="https://upload.wikimedia.org/wikipedia/ta/c/c0/Madras_Christian_College_Logo.png" alt="">
</button></li><br>
</ol>
</center>
</body>
</html>