Spaces:
Runtime error
Runtime error
File size: 3,551 Bytes
39f528e |
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 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Website</title>
<style>
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-image: url('backgroung-img.png'); /* Replace with your background image */
background-size: cover;
background-repeat: no-repeat;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
background-color: rgb(6, 6, 65); /* Semi-transparent black background */
padding: 15px 20px;
position: fixed;
top: 0;
width: 100%;
height: 10%;
z-index: 1000; /* Ensure the navbar is above other content */
}
.logo {
color: #fff;
font-size: 50px;
font-weight: bold;
text-decoration: none;
margin-left: 50px;
}
.icons {
display: flex;
gap: 20px;
}
.icons a {
display: flex;
align-items: center;
color: #fff;
text-decoration: none;
font-size: 18px;
transition: color 0.3s ease-in-out;
}
.icons a:hover {
color: #3498db;
}
.icon-img {
width: 50px;
height: 50px;
margin-right: 100px;
}
.card-container {
display: flex;
justify-content: center;
align-items: center;
}
.card {
background-color: rgba(66, 65, 65, 0.7); /* Semi-transparent white background */
padding: 60px;
border-radius: 10px;
text-align: center;
max-width: 600px;
margin: 10px;
}
.card img {
width: 100%;
height: auto;
margin-bottom: 10px;
}
.card p {
color: #fff;
padding-top: 10px;
font-weight: 400;
max-height: 6rem;
font-size: 1.5rem;
line-height: 1;
overflow: hidden;
text-overflow: ellipsis;
}
.styled-button {
background-color:transparent;
color: #ffffff;
padding: 30px 100px;
border: 1px solid rgb(62, 61, 61);
border-radius: 20px;
font-size: 30px;
font-weight: 700;
cursor: pointer;
transition: background-color 0.3s ease-in-out;
}
.styled-button:hover {
background-color:rgba(52, 152, 219, 0.1);;
}
</style>
</head>
<body>
<div class="navbar">
<div class="logo">EASA</div>
<div class="icons">
<a href="#">
<img src="home.png" alt="Home" class="icon-img">
</a>
<a href="#">
<img src="data-report.png" alt="Dashboard" class="icon-img">
</a>
<a href="#">
<img src="comment.png" alt="Chats" class="icon-img">
</a>
<a href="#">
<img src="notification.png" alt="Doubts" class="icon-img">
</a>
</div>
</div>
<div class="card-container">
<div class="card">
<img src="allocation.png" alt="Image 1">
<a href="acdameic_details.html"><button class="styled-button">Student Subject Allocation </button></a>
<p>Simplify course selection with our streamlined system for optimal subject assignment. Elevate student experience effortlessly.</p>
</div>
<div class="card">
<img src="feedback-1.png" alt="Image 2" >
<a href="http://192.168.7.147:5978"><button onclick="student_details"class="styled-button" >Student Feedback Analysis</button></a>
<p>Gain valuable insights with our Student Feedback Analysis System. Elevate learning experiences through data-driven improvements.</p>
</div>
</div>
<!-- Rest of your website content goes here -->
</body>
<script>
</script>
</html>
|