-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
104 lines (89 loc) · 2.61 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Contractors </title>
<link rel="stylesheet" type="text/css" href="css/index.css" />
</head>
<body>
<div class="topbar">
<div class="logo">
<img src="img/nis.png" height="75%" width="27%" style="position:relative; left:100px; top:13px;" />
</div>
<div class="navbar" style="position:relative; left:190px">
<a href=#home>HOME <b></a>
<div class="dropdown">
<button class="dropbtn"> ABOUT
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="bloghome.html">BLOG HOME</a>
<a href="blogservices.html">BLOG SERVICES</a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn"> CONTACT US
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="bloghome.html">ELEMENT</a>
<a href="blogservices.html">STAGE</a>
</div>
</div>
</div>
</div>
</div>
<!--
<div class="main">
<div class="summary">
<p>This is a platform for tracking contractors carrying out projects for the Nigeria immigration service </p>
</div>
<div class="more">
<ul>
<li><a href="more.html">Discover more</a></li>
</ul>
</div>
</div>
-->
<div class="login">
<img src="img/avatar.png" class="avatar" >
<h1>Login Here</h1>
<form>
<p>Username</p>
<input type="text" name="" placeholder="Enter Username">
<p>Password</p>
<input type="password" name="" placeholder="Enter Password">
<input type="submit" name="" value="login" href="afterlogin.html">
</form>
</div>
<!-- Slideshow container -->
<div class="slideshow-container">
<!-- Full-width images with number and caption text -->
<div class="mySlides fade">
<div class="numbertext">1 / 3</div>
<img src="img/p2.jpg" height="600px" style="width:100%">
<div class="text">""</div>
</div>
<div class="mySlides fade">
<div class="numbertext">2 / 3</div>
<img src="img/p1.jpg" height="600px" style="width:100%">
<div class="text">""</div>
</div>
<div class="mySlides fade">
<div class="numbertext">3 / 3</div>
<img src="img/p3.jpg" height="600px" style="width:100%">
<div class="text">""</div>
</div>
<!-- Next and previous buttons -->
<a class="prev" onclick="plusSlides(-1)">❮</a>
<a class="next" onclick="plusSlides(1)">❯</a>
</div>
<br>
<!-- The dots/circles -->
<div style="text-align:center">
<span class="dot" onclick="currentSlide(1)"></span>
<span class="dot" onclick="currentSlide(2)"></span>
<span class="dot" onclick="currentSlide(3)"></span>
</div>
<script type="text/javascript" src="js/index.js"></script>
</body>
</html>