-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (30 loc) · 898 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- displays site properly based on user's device -->
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<link rel="stylesheet" href="./main.css">
<title>Frontend Mentor | Job Listings</title>
</head>
<body>
<div class="static-job">
<div class="job__filter job__filter--hidden">
<div class="filter__box">
<div class="filter__list">
</div>
<button class="filter__clear">
clear
</button>
</div>
</div>
<div class="job__box">
<div class="job__header">
</div>
<div class="job__cont">
</div>
</div>
</div>
<script src="./main.js"></script>
</body>
</html>