-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlawcolleges.html
63 lines (59 loc) · 2.51 KB
/
lawcolleges.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>LAW 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 LAW COLLEGES</h1><br>
<ol>
<li><button onclick="window.location.href='https://www.nls.ac.in/'"><h2>National Law School of India University, Bangalore</h2>
<img src="https://upload.wikimedia.org/wikipedia/en/thumb/0/08/National_Law_School_of_India_University_Logo.png/220px-National_Law_School_of_India_University_Logo.png" alt="">
</button></li><br>
<li><button onclick="window.location.href='https://nludelhi.ac.in/'"><h2>
National Law University, New Delhi </h2>
<img src="https://upload.wikimedia.org/wikipedia/en/6/6d/National_Law_University%2C_Delhi_logo.png" alt="">
</button></li><br>
<li><button onclick="window.location.href='https://www.nalsar.ac.in/'"><h2>NALSAR University of Law, Hyderabad</h2>
<img src="https://upload.wikimedia.org/wikipedia/en/2/28/Nalsar_University_of_Law.png" alt="">
</button></li><br>
<li><button onclick="window.location.href='http://www.iitkgp.ac.in/law'"><h2>Rajiv Gandhi School of Intellectual Property Law, Indian Institute of Technology, Kharagpur</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>
<li><button onclick="window.location.href='https://jgu.edu.in/jgls/'"><h2>Jindal Global Law School, Sonipat</h2>
<img src="https://upload.wikimedia.org/wikipedia/en/thumb/8/87/O._P._Jindal_Global_University_Logo.png/220px-O._P._Jindal_Global_University_Logo.png" alt="">
</button></li><br>
</ol>
</center>
</body>
</html>