-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (27 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Employee Directory</title>
<link rel="stylesheet" href="css/normalize.css">
<link href="https://fonts.googleapis.com/css?family=Mukta:400,700" rel="stylesheet">
<link rel="stylesheet" href="css/styles.css">
</head>
<body class="container">
<h1>Awesome Startup Employee Directory</h1>
<input type="search" name="employeeSearch" id="search" placeholder="Find an employee">
<div class="cards-container">
</div><!-- end cards container -->
<div class="overlay">
<span class="prev">prev</span>
<span class="next">next</span>
</div><!-- end overlay -->
<script
src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<script src="js/scripts.js"></script>
<script src="js/search.js"></script>
</body>
</html>