<!DOCTYPE html> | |
<html lang=”en“> | |
<head> | |
<meta charset=”UTF-8” /> | |
<meta name=”viewport” content=”width=device-width, initial-scale=1.0“/> | |
<title>Ilahia Institutions</title> | |
<style> | |
body { | |
background-color: skyblue; | |
font-family: ‘Segoe UI’, Tahoma, Geneva, Verdana, sans-serif; | |
margin: 0; | |
padding: 0; | |
} | |
.container { | |
max-width: 600px; | |
margin: auto; | |
padding: 40px 20px; | |
text-align: center; | |
} | |
.header { | |
display: flex; | |
align-items: center; | |
justify-content: center; | |
gap: 15px; | |
margin-bottom: 30px; | |
text-align: left; | |
} | |
.logo { | |
width: 60px; | |
height: auto; | |
} | |
h1 { | |
color: white; | |
font-size: 1.8em; | |
text-shadow: 1px 1px 2px #00000044; | |
margin: 0; | |
} | |
.link-box { | |
background-color: white; | |
border-radius: 12px; | |
margin-bottom: 20px; | |
padding: 20px; | |
box-shadow: 0 4px 10px rgba(0,0,0,0.1); | |
transition: transform 0.2s ease, box-shadow 0.2s ease; | |
} | |
.link-box:hover { | |
transform: translateY(-5px); | |
box-shadow: 0 8px 15px rgba(0,0,0,0.2); | |
} | |
a { | |
text-decoration: none; | |
color: #0077cc; | |
font-size: 1.1em; | |
font-weight: bold; | |
} | |
@media screen and (max-width: 600px) { | |
.logo { | |
width: 50px; | |
} | |
h1 { | |
font-size: 1.5em; | |
} | |
.link-box { | |
padding: 15px; | |
} | |
a { | |
font-size: 1em; | |
} | |
} | |
</style> | |
</head> | |
<body> | |
<div class=”container“> | |
<div class=”header“> | |
<img src=”ilahiaLogo111.png” alt=”Ilahia Logo” class=”logo” /> | |
<h1>ILAHIA GROUP OF INSTITUTIONS</h1> | |
</div> | |
<div class=”link-box“> | |
<a href=”https://icet.ac.in/” target=”_blank“>Ilahia College Of Engineering</a> | |
</div> | |
<div class=”link-box“> | |
<a href=”https://icet.ac.in/” target=”_blank“>Ilahia College Of Arts And Science</a> | |
</div> | |
<div class=”link-box“> | |
<a href=”https://icet.ac.in/” target=”_blank“>Ilahia Polytechnic College</a> | |
</div> | |
<div class=”link-box“> | |
<a href=”https://icet.ac.in/” target=”_blank“>Ilahia Law College</a> | |
</div> | |
<div class=”link-box“> | |
<a href=”https://icet.ac.in/” target=”_blank“>Ilahia College Of Pharmacy</a> | |
</div> | |
</div> | |
</body> | |
</html> |