-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (70 loc) · 2.98 KB
/
Copy pathindex.html
File metadata and controls
78 lines (70 loc) · 2.98 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Find Startup Jobs Near You and Remote Jobs | Wellfound (formerly AngelList Talent)</title>
<link rel="icon" type="image/x-icon" href="https://angel.co/images/icons/wellfound.ico">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav>
<div class="logo"><a href="https://angel.co/"><img src="Logo.png" alt=""></a></div>
<div class="right-nav-main">
<div class="right-nav">
<a href="" class="">Overview</a>
<a href="" class="">Jobs</a>
<a href="" class="">Featured</a>
<a href="" class="">Remote</a>
<a href="" class="">For companies</a>
<div class="login-sign-up">
<button id="login-button" type="submit">Login</button>
<button id="sign-up-button" type="submit">Sign Up</button>
</div>
</div>
</div>
<div class="hamburger">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
</nav>
</header>
<div class="body-main">
<div class="jobs-you">
<h1>Jobs you can't find anywhere else, at startups you won't hear about anywhere else.</h1>
<p>Browse over 130k remote & local jobs at the worlds most innovative startups - from seed stage to post-IPO.</p>
</div>
<div class="body-img1">
<img src="https://angel.co/images/jobs/hero.png" alt="">
</div>
</div>
<div class="g-signup">
<form action="">
<input type="text" placeholder="Your Email">
<button id="email-signup" type="submit">Sign up </button>
<span>or</span>
<button id="google-signup" type="submit"><img height="24" width="24" src="https://cdn-icons-png.flaticon.com/512/2991/2991148.png" class=""/>Sign up with Google</button>
</form>
</div>
<div class="looking-for">
<div class="looking-for-left">
<span>Looking for AngelList Venture? <a href="https://www.angellist.com/" class="">Visit AngelList.com</a></span>
</div>
<div class="looking-for-right">
<span>Already have an account? <a href="https://angel.co/login" class="">Log In</a></span>
</div>
</div>
<h1 class="featured-jobs">Featured jobs</h1>
<script>
const hamburger = document.querySelector(".hamburger");
const rightnav = document.querySelector(".right-nav");
hamburger.addEventListener("click", () => {
hamburger.classList.toggle("active");
rightnav.classList.toggle("active");
})
</script>
</body>
</html>