You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Code2C/services.html

171 lines
4.0 KiB

<!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>Our Services</title>
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
<link rel="stylesheet" href="style.css">
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
}
header {
background: #333;
color: #fff;
padding-top: 30px;
min-height: 70px;
border-bottom: #0779e4 3px solid;
}
header a {
color: #fff;
text-decoration: none;
text-transform: uppercase;
font-size: 16px;
}
header ul {
margin: 0;
padding: 0;
list-style: none;
line-height: 70px;
}
header li {
float: left;
display: inline;
padding: 0 20px;
}
.services {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin: 20px 0;
}
.service {
background: #fff;
padding: 20px;
margin: 10px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
text-align: center;
flex: 1 1 calc(33% - 20px);
box-sizing: border-box;
}
.service i {
font-size: 50px;
color: #0779e4;
margin-bottom: 10px;
}
.service h3 {
margin: 10px 0;
}
.service p {
color: #666;
}
.btn-back {
display: inline-block;
padding: 10px 20px;
background-color: #0779e4;
color: white;
text-decoration: none;
border-radius: 5px;
text-align: center;
margin-top: 20px;
font-size: 18px;
}
.btn-back:hover {
background-color: #0056b3;
}
@media(max-width: 768px) {
.service {
flex: 1 1 calc(50% - 20px);
}
}
@media(max-width: 480px) {
.service {
flex: 1 1 100%;
}
}
</style>
</head>
<body>
<header>
<div class="container">
<h1>Our Services</h1>
</div>
</header>
<div class="container">
<div class="services">
<div class="service">
<i class='bx bx-code'></i>
<h3>Daily Rewards</h3>
<p>Be active to gain something special.</p>
</div>
<a href="quiz.php">
<div class="service">
<i class='bx bx-mobile-alt'></i>
<h3>Rapid Quiz</h3>
<p>Test Your Knowledge.</p>
</div></a>
<div class="service">
<i class='bx bx-server'></i>
<h3>AI Chatbot</h3>
<p>Under Development</p>
</div>
<div class="service">
<i class='bx bx-bar-chart'></i>
<h3>Mock Exams</h3>
<p>Improve your Studies.</p>
</div>
<div class="service">
<i class='bx bx-shield'></i>
<h3>Library</h3>
<p>Know the World</p>
</div>
<a href="games.html">
<div class="service">
<i class='bx bx-brush'></i>
<h3>Games</h3>
<p>Have Fun Studying</p>
</div>
</a>
</div>
<!-- Go Back Button -->
<a href="homepage.php" class="btn-back">Go Back</a>
</div>
</body>
</html>