-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhomepg.html
47 lines (44 loc) · 1.24 KB
/
homepg.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>RetroCraftHub</title>
<link rel="stylesheet" href="styles1.css">
</head>
<body>
<header>
<nav>
<div class="logo">
<h1>RetroCraftHub</h1>
</div>
<ul class="nav-links">
<li class="dropdown">
<a href="#">Sign In</a>
<ul class="dropdown-menu">
<li><a href="http://localhost:3510/login">Freelancer </a></li>
<li><a href="http://localhost:3510/login1">Recruiter </a></li>
</ul>
</li>
<li class="dropdown">
<a href="#">Sign Up</a>
<ul class="dropdown-menu">
<li><a href="http://localhost:3510/signup">Freelancer </a></li>
<li><a href="http://localhost:3510/signup1">Recruiter </a></li>
</ul>
</li>
<li><a href="/contact.html">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section class="hero">
<h2>Find the Perfect Freelance Services</h2>
<h2> for Your Business</h2>
<p>The best talents made available for you.</p>
</section>
</main>
<footer>
<p>© 2023 RetroCraftHub Website</p>
</footer>
</body>
</html>