-
Notifications
You must be signed in to change notification settings - Fork 0
/
index - Copy.html
153 lines (129 loc) · 3.88 KB
/
index - Copy.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<!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>E-hiring system</title>
<link rel="stylesheet" href="e-hiring2.css">
<body>
<div class="header">
<!-- <div style="margin-top:-70px;"></div> -->
<ul>
<li><a href="">Home</a></li>
<li><a href="Service.html">Services</a></li>
<li><a href="About.html">About us</a></li>
<li><a href="Contact.html">Contact</a></li>
<!-- <li><a href="Account.html">Account</a></li> -->
<li><a href="Jobs.html">Jobs</a></li>
<div class="btn">
<!-- <button class="btn1 bt1">Sign up</button> -->
<button class="btn1 bt2"><a href="Login.html">Login</a></button>
<div class="pa">
<p>If you don't have account <br> <a href="signup.html
">Sign up</a> to create yours too</p>
</div>
</div>
</ul>
</div>
<!-- slide show -->
<!--
<div class="slideshow-container">
<div class="mySlides fade">
<div class="numbertext">1 / 3</div>
<img src="1.jpg" style="width:100%;height:650px;">
<div class="text">Caption Text</div>
</div>
<div class="mySlides fade">
<div class="numbertext">2 / 3</div>
<img src="2.jpg"style="width:100%;height:650px;">
<div class="text">Caption Two</div>
</div>
<div class="mySlides fade">
<div class="numbertext">3 / 3</div>
<img src="3.jpg"style="width:100%;height:650px;">
<div class="text">Caption Three</div>
</div>
</div>
<br>
<div style="text-align:center;margin-top:20px;">
<span class="dot"></span>
<span class="dot"></span>
<span class="dot"></span>
</div>
<script>
var slideIndex = 0;
showSlides();
function showSlides() {
var i;
var slides = document.getElementsByClassName("mySlides");
var dots = document.getElementsByClassName("dot");
for (i = 0; i < slides.length; i++) {
slides[i].style.display = "none";
}
slideIndex++;
if (slideIndex > slides.length) {slideIndex = 1}
for (i = 0; i < dots.length; i++) {
dots[i].className = dots[i].className.replace(" active", "");
}
slides[slideIndex-1].style.display = "block";
dots[slideIndex-1].className += " active";
setTimeout(showSlides, 2000); // Change image every 2 seconds
}
</script>
end of slideshow -->
<!-- .................... -->
<div class="image">
<h1>INTRODUCTION</h1>
<p>E-hiring is the best solution to the organization
/companies which are looking for employees with<br>
high level of skills,experience and good
qualifications as well as employees who are
for jobs
<br> especially in Rwanda.</p>
</div>
<!-- contact -->
<div class="contact">
<h1><u>Contact us</u></h1>
<p>CEO:Murekezi Ismael</p>
<p>Email:[email protected]</p>
<p>Address:Kugateme</p>
<p>Tel:078150573</p>
<P>Web-page:www.E-hiring.rw.com</P>
</div>
<section>
<footer>
<center>
<div class="box b1">
<strong>Main links</strong> <br><br>
<span> <a href="service.html"> Services</a></span><br>
<span> <a href="jobs.html"> Jobs</a></span><br>
<!-- <span>Accounts </span><br> -->
<span><a href="About.html">About us</a></span><br>
</div>
<div class="box b2">
<strong>Services</strong> <br> <br>
<span> Addressing jobs</span> <br>
<span>Addressing employees </span></br>
<span>Trainings</span> <br>
</div>
<div class="box b3">
<strong>Job</strong> <br><br>
<span>Monthly jobs</span><br>
<span>Pertime jobs</span></br>
<span>Tender jobs</span><br>
</div>
<div class="box b4">
<strong>Commments</strong> <br> <br>
<form action="db.php" method="POST">
<input type="text"placeholder="Enter Your names...." name="name"> <br>
<input type="email"placeholder="Enter Your email...." name="email"> <br>
<textarea name="text" id="" cols="25" rows="3" name="comment"></textarea> <br>
<button class="but"><a href="">Submit</a></button>
</form>
</div>
</center>
</footer>
</section>
</body>
</html>