-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (45 loc) · 1.82 KB
/
index.html
File metadata and controls
47 lines (45 loc) · 1.82 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>JobConnect</title>
<link rel="stylesheet" href="style.css" />
<link rel="icon" type="image/x-icon" href="briefcase-solid.svg">
<script src="https://kit.fontawesome.com/3c8aec6b0f.js" crossorigin="anonymous"></script>
</head>
<body>
<header class="header container">
<a href="index.html">
<span class="header-title"><i class="fa-solid fa-briefcase"></i> JobConnect</span> </a>
<nav class="nav">
<ul class="nav-items-list">
<li><a class="nav-item-link" href="index.html">Home</a></li>
<li><a class="nav-item-link" href="login.html">Login</a></li>
<li><a class="nav-item-link" href="about.html">About</a></li>
</ul>
</nav>
</header>
<br><br>
<main class="container main-home">
<div class="main-content">
<h1>Find Web3 Jobs and <span style="color: rgb(0, 96, 79);">Freelance Opportunities</span></h1>
<p>
JobConnect is a blockchain-based freelance jobs platform that facilitates cryptocurrency payments. It connects employers and businesses with Web3 talent, enabling freelancers to receive payments in various cryptocurrencies.
</p>
<div class="btn-container">
<a class="btn btn-grey" href="searchforjobs.html">Search for jobs</a>
<a class="btn btn-blue" href="postjob.html" >Post Jobs</a>
</div>
</div>
<img class="main-image" src="\images\freelancer.webp" alt="" />
</main>
<body>
<footer >
<div class="container footer">
<p class="footer-copyright">@copyright 2024</p>
<p class="footer-terms">terms and conditions applied</p>
</div>
</footer>
</body>
</html>