-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathworkers.html
More file actions
56 lines (53 loc) · 1.97 KB
/
Copy pathworkers.html
File metadata and controls
56 lines (53 loc) · 1.97 KB
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">
<link rel="stylesheet" href="bootstrap.min.css">
<link rel="stylesheet" href="worker.css">
<link rel="stylesheet" href="workerLightBox.css">
<title>Document</title>
<script src="workersJs/appWorkers.js" defer type="module"></script>
</head>
<body>
<div class="container-fluid strip">
<div class="container">
</div>
</div>
<header class="container-fluid bg-dark text-white">
<div class="container">
<div class="row align-items-center justify-content-between">
<div class="col-auto">
<h2>search company workers</h2>
</div>
<nav class="col-auto">
<div class="d-flex">
<input placeholder="search..." id="id_input" class="form-control">
<button id="id_button" class="btn btn-success">search</button>
</div>
</nav>
</div>
</div>
</header>
<main class="container-fluid">
<div class="container">
<h2>the list of workers :</h2>
<div id="id_row" class="row">
</div>
</div>
</main>
<footer class="footer container-fluid bg-dark text-white">
<div class=" container text-center">
<div class="col-auto">
<h3 class="display-5">its difference with us</h3>
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Labore quasi tempora porro
eligendi fugiat cupiditate
</p>
<img src="image/pic4jpg.jpg" alt="all rights reserved">
<div>all rights reserved</div>
</div>
</div>
</footer>
</body>
</html>