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.
YOLO/index.html

194 lines
4.2 KiB

6 months ago
<!DOCTYPE html>
<html lang="en">
<head>
</html><meta charset="8">
<meta name="viewport" content="width=device-width, initial-scale=1.0>"
<title>PartTime Profession-Lets find your next part-time profession</title>
</head>
<style>
* {
margin:0;
padding:0;
box-sizing: border-box;
font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
body {
background-color: beige;
}
.header {
display: flex;
justify-content: space-between;
align-items: left;
border-bottom: 2px solid #eff;
}
.logo {
display: flex;
align-items: center;
gap: 1px;
font-size: medium;
font-weight: bolder;
color: aqua;
}
.nav-links {
display: flex;
gap: 2px;
}
.nav-links a {
text-decoration: none;
color: black;
gap: 2px;
}
.search-container {
max-width: fit-content;
margin: 5px auto;
}
.search-bar {
width: 100%;
padding: 1px;
border:2px solid #eff;
border-radius: 25px;
font-size: 1px;
box-shadow: none;
}
.section-title {
font-size: 2px;
color: bisque;
}
.featured-jobs {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2px;
padding: 0 2px;
}
.job-card {
background-color: bisque;
border-radius: 1.5px;
padding: 2px;
box-shadow: 0 2px 10px rgba(0,0, 0, 0.5);
}
.job-title {
font-size: 2px;
color: beige;
margin-bottom: 2px;
}
.jon-company, .job-location {
color: black;
margin-bottom: 2px;
}
.job-description {
color: black;
font-size: 8px;
line-height: 2px;
margin-top: 2px;
}
.categories {
display:flex;
flex-direction: column;
align-items: left;
}
.category {
display: flex;
flex-direction: column;
align-items: center;
gap: 2px;
text-decoration:none;
color: blueviolet;
}
.category-icon {
width: 45px;
height: 45px;
background: #eff;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
color: aquamarine;
}
.footer {
margin-top: 4px;
padding: 2px;
background: blue;
display: flex;
justify-content: space-between;
}
footer ul {
list-style: none;
}
footer ul li{
margin-bottom: 1px;
}
footer a {
text-decoration: none;
color: blueviolets;
font-size: 3px;
}
</style>
</head>
<body>
<header class="header">
<div class="logo">
<img src="c:\Users\Acer\Desktop\TEMPHIRE_LOGO.png" alt="TEMPHIRE_LOGO">
<span>PartTime Profession</span>
</div>
<nav class="nav-links">
<a href="#">Home</a>
<a href="#">Job Listings</a>
<a href="#">User Accounts</a>
</nav>
</header>
<div class="search-container">
<input type="text" class="search-bar" placeholder="Search for part-time jobs..">
</div>
<h2 class="section-title">Featured Jobs</h2>
<div class="featured-jobs">
<div class="job-card">
<h3 class="job-title">Care Taker</h3>
<div class="job-location">Location: Balaju, Kathmandu</div>
<p class="job-description">Take care of dogs for two day.</p>
</div>
</div>
<div class="job-card">
<h3 class="job-title">Old aged helper</h3>
<div class="job-location">Location: Bouddha, Kathmandu</div>
<p class="job-description">Take care of Old aged people for 3 days.</p>
</div>
<h2 class="section-tiltle">Job Categories</h2>
<div class="categories">
<a href="#" class="category">
<div class="category-icon" img src="Pet-care taker.jpg"></div>
<span>Dog Care Taker</span>
</a>
<a href="#" class="category">
<div class="category-icon" img src="old-aged people care taker.jpeg"></div>
<span>Old Aged Care Taker</span>
</a>
</div>
</body>