-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathstaffList.html
More file actions
69 lines (66 loc) · 1.96 KB
/
staffList.html
File metadata and controls
69 lines (66 loc) · 1.96 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Javascript Working with Objects</title>
<link rel="stylesheet" type="text/css" href="css/mobileFirst.css" />
<link
rel="stylesheet"
type="text/css"
media="only screen and (min-width:601px)"
href="css/desktop.css"
/>
</head>
<body>
<div class="container">
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="staffList.html">Staff List</a></li>
</ul>
</nav>
<h1>
<span class="l1">B</span><span class="l2">u</span
><span class="l3">s</span><span class="l4">y</span
><span class="l5">.</span><span class="l6">c</span
><span class="l7">o</span><span class="l8">m</span>
</h1>
</header>
<div class="main">
<div class="contentLeft">
<h2>Staff List</h2>
<div>
<table>
<thead>
<tr>
<th>Name</th>
<th>Email</th>
</tr>
</thead>
<tbody id="staffTable"></tbody>
</table>
</div>
</div>
<div class="contentRight">
<h2>Add Staff</h2>
<form id="addStaffForm">
<div>
<label for="staffName">Name:</label>
<input type="text" name="staffName" id="staffName" />
</div>
<div>
<label for="staffEmail">Email:</label>
<input type="text" name="staffEmail" id="staffEmail" />
</div>
<div>
<input type="submit" value="Add" class="btn" />
</div>
</form>
</div>
</div>
<footer>© 2022 mustbebuilt</footer>
</div>
</body>
</html>