-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (46 loc) · 1.45 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta http-equiv="X-UA-Compatible" content="ie=edge"/>
<meta name="description" content="Don't lose track of your payroll: sniff every cent that passes through your organization.">
<link rel="icon" type="image/x-icon" href="./Assets/Images/Payroll_Hound_Favicon.png">
<link rel="stylesheet" href="./Assets/style.css"/>
<script defer src="./Assets/script.js"></script>
<title>Payroll Hound 9000 | Payroll Tracker</title>
</head>
<body>
<div class="wrapper">
<header>
<section class="top-title">
<h1 class="brand">Payroll</h1>
<img class="logo" src="./Assets/Images/Payroll_Hound.png" alt="payroll hound logo hound nose vector">
<h1 class="brand">Hound</h1>
</section>
<h1 class="title">Employee Payroll Tracker</h1>
</header>
<div class="card">
<div class="card-header">
<h2>Employee Roster</h2>
</div>
<div class="card-body">
<table>
<thead>
<tr>
<th>First Name</th>
<th>Last Name</th>
<th>Salary</th>
</tr>
</thead>
<tbody id="employee-table">
</tbody>
</table>
</div>
<div class="card-footer">
<button id="add-employees-btn" class="btn">Add Employees</button>
</div>
</div>
</div>
</body>
</html>