forked from AditiDiti/HelpingHands2.0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgreen.html
56 lines (53 loc) · 2.92 KB
/
green.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
<!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>Register</title>
<link rel="stylesheet" href="green.css"/>
</head>
<body>
<div class="container">
<div class="left-section">
<button class="back-button" onclick="window.location.href='index.html'"><img src="assets/registerpage/image.png" width="50px" heigth="50px"/></button>
<h1 class="animated-heading">Helping Hands<span class="blinking-cursor">|</span></h1>
<p class="description">
Helping Hands is dedicated to providing support and resources to those in need. Our mission is to empower individuals and communities by offering job opportunities, educational resources, and a supportive network.
</p>
<!-- <h5>Register Here</h5> -->
<div class="buttons">
<button type="button" onclick="window.location.href='employer.html'">Post a Job</button>
<button type="button" onclick="window.location.href='form.html'">Apply for Jobs</button>
<button type="button" onclick="window.location.href='box.html'">Access Educational Resources</button>
</div>
<p class="quote">
"The best way to find yourself is to lose yourself in the service of others."<br>- Mahatma Gandhi
</p>
</div>
<div class="right-section">
<img src="./assets/registerpage/img1.jpg" alt="Post Job" class="transition-image">
<img src="./assets/registerpage/img2.png" alt="Search Job" class="transition-image">
<img src="./assets/registerpage/img3.jpg" alt="Search Job" class="transition-image">
<img src="./assets/registerpage/img4.jpg" alt="Post Job" class="transition-image">
<img src="./assets/registerpage/img5.jpg" alt="Search Job" class="transition-image">
<img src="./assets/registerpage/img6.jpg" alt="Search Job" class="transition-image">
<img src="./assets/registerpage/img7.jpg" alt="Search Job" class="transition-image">
<img src="./assets/registerpage/img8.jpg" alt="Post Job" class="transition-image">
<img src="./assets/registerpage/img9.jpg" alt="Search Job" class="transition-image">
<img src="./assets/registerpage/img10.jpg" alt="Search Job" class="transition-image">
</div>
</div>
<script>
// JavaScript for image transitions
const images = document.querySelectorAll('.transition-image');
let currentImageIndex = 0;
function showNextImage() {
images[currentImageIndex].style.opacity = 0;
currentImageIndex = (currentImageIndex + 1) % images.length;
images[currentImageIndex].style.opacity = 1;
}
setInterval(showNextImage, 3000);
</script>
</body>
</html>