-
Notifications
You must be signed in to change notification settings - Fork 74
/
opportunity.html
60 lines (48 loc) · 1.65 KB
/
opportunity.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
<!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>opportunity</title>
<!-- font awesome cdn link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<link rel="stylesheet" href="assets/css/opportunity.css">
</head>
<body>
<!-- header section starts -->
<header>
<a href="#" class="logo"><span>Coders</span>Evoke</a>
<input type="checkbox" id="menu-bar">
<label for="menu-bar" class="fas fa-bars"></label>
<nav class="navbar">
<a href="#Home">Home</a>
<a href="#about us">About us</a>
<a href="#contact">contact</a>
<a href="#opportunity">opportunity</a>
<a href="#events">events</a>
<a href="#team">team</a>
</nav>
</header>
<!-- header section ends -->
<!-- home section starts -->
<section class="home" id="home">
<div class="content">
<h3>connect with <span>CodersEvoke</span></h3>
<p>Lorem ipsum dolor, sit amet consectetur adipisicing elit. Non dolorem magni saepe similique autem vitae, odio consequatur aliquam laudantium commodi consequuntur odit neque.</p>
<a href="#" class="btn">Join Discord</a>
</div>
<div class="image">
<img src="assets/img/home-img.png" alt="">
</div>
</section>
<!-- home section ends -->
<!-- features section starts -->
<section class="features" id="features">
<div class="box-container">
<div class="box">
</div>
</div>
</section>
</body>
</html>