forked from ccoenraets/employee-directory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
employeedetails.html
40 lines (33 loc) · 931 Bytes
/
employeedetails.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
37
38
39
40
<!DOCTYPE HTML>
<html>
<head>
<title>Employee Directory</title>
<meta name="viewport" content="width=device-width,initial-scale=1, target-densityDpi=device-dpi"/>
<link rel="stylesheet" href="css/styles.css" />
</head>
<body>
<div id="header" class="header">
<a href="index.html" class="nav">Home</a>
<h1>Employee Directory</h1>
</div>
<div id="header2">
<h2>Employee Details</h2>
</div>
<div id="wrapper">
<div>
<div id="employeeDetails">
<img id="employeePic"/>
<h3 id="fullName"></h3>
<p id="employeeTitle"></p>
<p id="city"></p>
</div>
<ul id="actionList"></ul>
</div>
</div>
<div id="busy"/>Loading...</div>
<script src="phonegap.js"></script>
<script src="js/jquery.js"></script>
<script src="js/iscroll.js"></script>
<script src="js/employeedetails.js"></script>
</body>
</html>