Compare commits
4 Commits
4bdb85bff7
...
77fb173dd2
Author | SHA1 | Date |
---|---|---|
|
77fb173dd2 | 6 months ago |
|
b1455091a0 | 6 months ago |
|
4fad940589 | 6 months ago |
|
539d3151c2 | 6 months ago |
@ -0,0 +1,227 @@ |
|||||||
|
<!DOCTYPE html> |
||||||
|
<html lang="en"> |
||||||
|
<head> |
||||||
|
<meta charset="UTF-8"> |
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
||||||
|
<title>PartTime Profession - Lets find your next part-time profession</title> |
||||||
|
<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: center; |
||||||
|
padding: 1rem; |
||||||
|
border-bottom: 2px solid #eee; |
||||||
|
background-color: white; |
||||||
|
} |
||||||
|
|
||||||
|
.logo { |
||||||
|
display: flex; |
||||||
|
align-items: center; |
||||||
|
gap: 1rem; |
||||||
|
font-size: 1.5rem; |
||||||
|
font-weight: bolder; |
||||||
|
color: #00416A; |
||||||
|
} |
||||||
|
|
||||||
|
.logo img { |
||||||
|
height: 50px; |
||||||
|
width: auto; |
||||||
|
} |
||||||
|
|
||||||
|
.nav-links { |
||||||
|
display: flex; |
||||||
|
gap: 2rem; |
||||||
|
} |
||||||
|
|
||||||
|
.nav-links a { |
||||||
|
text-decoration: none; |
||||||
|
color: #333; |
||||||
|
font-size: 1rem; |
||||||
|
padding: 0.5rem 1rem; |
||||||
|
} |
||||||
|
|
||||||
|
.nav-links a:hover { |
||||||
|
color: #00416A; |
||||||
|
} |
||||||
|
|
||||||
|
.search-container { |
||||||
|
max-width: 800px; |
||||||
|
margin: 2rem auto; |
||||||
|
padding: 0 1rem; |
||||||
|
} |
||||||
|
|
||||||
|
.search-bar { |
||||||
|
width: 100%; |
||||||
|
padding: 1rem; |
||||||
|
border: 2px solid #ddd; |
||||||
|
border-radius: 25px; |
||||||
|
font-size: 1rem; |
||||||
|
box-shadow: 0 2px 5px rgba(0,0,0,0.1); |
||||||
|
} |
||||||
|
|
||||||
|
.section-title { |
||||||
|
font-size: 1.5rem; |
||||||
|
color: #00416A; |
||||||
|
margin: 2rem 1rem; |
||||||
|
} |
||||||
|
|
||||||
|
.featured-jobs { |
||||||
|
display: grid; |
||||||
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); |
||||||
|
gap: 1.5rem; |
||||||
|
padding: 0 1rem; |
||||||
|
} |
||||||
|
|
||||||
|
.job-card { |
||||||
|
background-color: white; |
||||||
|
border-radius: 8px; |
||||||
|
padding: 1.5rem; |
||||||
|
box-shadow: 0 2px 10px rgba(0,0,0,0.1); |
||||||
|
} |
||||||
|
|
||||||
|
.job-title { |
||||||
|
font-size: 1.2rem; |
||||||
|
color: #00416A; |
||||||
|
margin-bottom: 0.5rem; |
||||||
|
} |
||||||
|
|
||||||
|
.job-location { |
||||||
|
color: #666; |
||||||
|
margin-bottom: 1rem; |
||||||
|
} |
||||||
|
|
||||||
|
.job-description { |
||||||
|
color: #333; |
||||||
|
font-size: 0.9rem; |
||||||
|
line-height: 1.5; |
||||||
|
} |
||||||
|
|
||||||
|
.categories { |
||||||
|
display: flex; |
||||||
|
gap: 2rem; |
||||||
|
padding: 2rem; |
||||||
|
flex-wrap: wrap; |
||||||
|
} |
||||||
|
|
||||||
|
.category { |
||||||
|
display: flex; |
||||||
|
flex-direction: column; |
||||||
|
align-items: center; |
||||||
|
gap: 0.5rem; |
||||||
|
text-decoration: none; |
||||||
|
color: #00416A; |
||||||
|
} |
||||||
|
|
||||||
|
.category-icon { |
||||||
|
width: 80px; |
||||||
|
height: 80px; |
||||||
|
background: #f5f5f5; |
||||||
|
border-radius: 8px; |
||||||
|
display: flex; |
||||||
|
align-items: center; |
||||||
|
justify-content: center; |
||||||
|
overflow: hidden; |
||||||
|
} |
||||||
|
|
||||||
|
.category-icon img { |
||||||
|
width: 100%; |
||||||
|
height: 100%; |
||||||
|
object-fit: cover; |
||||||
|
} |
||||||
|
|
||||||
|
footer { |
||||||
|
margin-top: 3rem; |
||||||
|
padding: 2rem; |
||||||
|
background: #00416A; |
||||||
|
color: white; |
||||||
|
display: flex; |
||||||
|
justify-content: space-between; |
||||||
|
} |
||||||
|
|
||||||
|
footer ul { |
||||||
|
list-style: none; |
||||||
|
} |
||||||
|
|
||||||
|
footer ul li { |
||||||
|
margin-bottom: 1rem; |
||||||
|
} |
||||||
|
|
||||||
|
footer a { |
||||||
|
text-decoration: none; |
||||||
|
color: white; |
||||||
|
font-size: 0.9rem; |
||||||
|
} |
||||||
|
</style> |
||||||
|
</head> |
||||||
|
<body> |
||||||
|
<header class="header"> |
||||||
|
<div class="logo"> |
||||||
|
<img src="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 Account</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 days. Experience with pets required.</p> |
||||||
|
</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 elderly people for 3 days. Prior experience preferred.</p> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
|
||||||
|
<h2 class="section-title">Job Categories</h2> |
||||||
|
<div class="categories"> |
||||||
|
<a href="#" class="category"> |
||||||
|
<div class="category-icon"> |
||||||
|
<img src="Pet-care-taker.jpg" alt="Dog Care"> |
||||||
|
</div> |
||||||
|
<span>Dog Care Taker</span> |
||||||
|
</a> |
||||||
|
<a href="#" class="category"> |
||||||
|
<div class="category-icon"> |
||||||
|
<img src="old-aged-people-care-taker.jpeg" alt="Elderly Care"> |
||||||
|
</div> |
||||||
|
<span>Old Aged Care Taker</span> |
||||||
|
</a> |
||||||
|
</div> |
||||||
|
|
||||||
|
<footer> |
||||||
|
<ul> |
||||||
|
<li><a href="#">About Us</a></li> |
||||||
|
<li><a href="#">Contact</a></li> |
||||||
|
<li><a href="#">Privacy Policy</a></li> |
||||||
|
</ul> |
||||||
|
<ul> |
||||||
|
<li><a href="#">Jobs</a></li> |
||||||
|
<li><a href="#">Companies</a></li> |
||||||
|
<li><a href="#">Support</a></li> |
||||||
|
</ul> |
||||||
|
</footer> |
||||||
|
</body> |
||||||
|
</html> |
@ -0,0 +1 @@ |
|||||||
|
Subproject commit 4bdb85bff7567151b15e51566ccf08447e97cd68 |
After Width: | Height: | Size: 495 KiB |
After Width: | Height: | Size: 151 KiB |
Loading…
Reference in new issue