-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·30 lines (29 loc) · 1.27 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>Employee Directory</title>
<!-- Change this to UFT 16 if using a character set that requires it-->
<meta charset="UTF-8">
<!-- meta viewport best practices. Benefits include better SEO name.
"shrink-to-fit=no" reccomended for fixing a bug in iOs 9's behavior -->
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="css/styles.css" rel="stylesheet">
</head>
<body>
<header class="header">
<div class="header__container--gradient"> </div>
<div class="header__container">
<h1 class="header__text">EMPLOYEE DIRECTORY</h1>
</div>
</header>
<div id="gallery" class="gallery">
<div class="card" id="card-no-js">
<div class="img-container">
<h3>Please turn on javascript in order to see the Employee Directory</h3>>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script type='text/javascript' src='js/scripts.js'></script>
</body>
</html>