-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.ejs
50 lines (47 loc) · 1.43 KB
/
index.ejs
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="css.css">
</head>
<body>
<div class="mainbox">
<section class="search">
<div class="searchbox">
<input type="text" name="search" class="searchtext" id="search" placeholder="Company name">
<button type="submit">Find</button>
</div>
</section>
<section class="jobs">
<section class="jobsfilter">
<input type="text" name="category" class="category" id="category">
<input type="text" name="location" class="location" id="location">
<input type="text" name="jobtype" class="jobtype" id="jobtype">
</section>
<section class="jobslist">
<div class="itemcard">
<% data.forEach(element =>{ %>
<div class="itemimg">
img <%= element.sno %>
</div>
<div class="job">
<h1 class="title">
<%= element.title %>
</h1>
<p class="jobdesc">
<%= element.desc %>
</p>
</div>
<%= element.link %>
<button type="submit">Apply</button>
<% }) %>
</div>
</section>
</section>
</div>
<script src="hide.js"></script>
<!-- <script src="js.js"></script> -->
</body>
</html>