-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwelcome.html
65 lines (63 loc) · 2.61 KB
/
welcome.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome to WorkNow</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="script.js" defer></script>
</head>
<body>
<header>
<div class="container">
<h1><a href="#">WorkNow</a></h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="welcome.html">Welcome</a></li>
<li><a href="escrow.html">Escrow</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="login.html">Login</a></li>
<li><a href="#" class="btn">Sign Up</a></li>
</ul>
</nav>
</div>
</header>
<section id="welcome" class="container">
<h2>Welcome to WorkNow</h2>
<div class="welcome-grid">
<div class="welcome-option">
<h3>Looking for Work?</h3>
<p>Find the best local job opportunities that match your skills and experience.</p>
<a href="#" class="btn">Start Finding Jobs</a>
</div>
<div class="welcome-option">
<h3>Need Workers?</h3>
<p>Hire reliable and skilled workers for your job needs quickly and easily.</p>
<a href="#" class="btn">Post a Job</a>
</div>
</div>
</section>
<footer>
<div class="container">
<h2>Contact Us</h2>
<p>Have questions or need support? Reach out to us!</p>
<form action="#">
<input type="text" placeholder="Your Name" required>
<input type="email" placeholder="Your Email" required>
<textarea placeholder="Your Message" required></textarea>
<button type="submit" class="btn">Send Message</button>
</form>
<div class="social">
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-linkedin-in"></i></a>
</div>
</div>
</footer>
</body>
</html>