-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfind_opportunity.html
81 lines (75 loc) · 3.38 KB
/
find_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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!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">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Caveat:wght@700&family=Roboto&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/utilities.css">
<link rel="stylesheet" href="./css/style.css">
<script>
let map;
function initMap() {
map = new google.maps.Map(document.getElementById("map"), {
center: { lat: 43.0840544, lng: -77.6737976 },
zoom: 10,
});
const marker = new google.maps.Marker({
position: { lat: 43.0840544, lng: -77.6737976 },
map: map,
});
}
</script>
<title>Volunteer Now | Find Opportunities</title>
</head>
<body>
<header>
<div class="top">
<a class="logo" href="/volunteer-now/index.html">
<h1>Volunteer Now</h1>
</a>
<nav>
<ul class="nav">
<li><a href="/volunteer-now/organizations.html">Organizations</a></li>
<li><a href="/volunteer-now/find_opportunity.html">Find Opportunities</a></li>
<div class="auth">
<li><a class="button-light" href="/volunteer-now/index.html">Logout</a></li>
</div>
</ul>
</nav>
</div>
<div class="content-page">
<h1 class="title">Find Opportunities</h1>
</div>
</header>
<div style="display: flex; justify-content: space-between;">
<div class="boxes">
<div class="box">
<h4 class="name">
Event Name
</h4>
<p class="description">Lorem ipsum dolor sit amet consectetur adipisicing elit. Nulla unde mollitia dolorum quisquam commodi? Facere fuga molestias perferendis repellendus. Voluptate?</p>
<a class="button-dark" href="/volunteer-now/dashboard.html">Register</a>
</div>
<hr>
<div class="box">
<h4 class="name">
Event Name
</h4>
<p class="description">Lorem ipsum dolor sit amet consectetur adipisicing elit. Velit impedit quidem assumenda, quae libero ipsam recusandae ea dignissimos labore sit.</p>
<a class="button-dark" href="/volunteer-now/dashboard.html">Register</a>
</div>
<hr>
<div class="box">
<h4 class="name">
Event Name
</h4>
<p class="description">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Neque, fuga molestiae voluptates excepturi aperiam mollitia. Temporibus perferendis praesentium corporis a.</p>
<a class="button-dark" href="/volunteer-now/dashboard.html">Register</a>
</div>
</div>
<img src="./img/map.png" alt="Map" style="height: 77vh; width: 80%; display: block;">
</div>
</html>