-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
127 lines (116 loc) · 3.37 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<html>
<head>
<title>GinkoBiloba</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="logo.png" type="image/x-icon">
</head>
<body>
<header class="header">
<div class="brand-box">
<span class="brand">GinkoBiloba</span>
</div>
<div class="text-box">
<h1 class="heading-primary">
<span class="heading-primary-main">Visualized data for your employees</span>
<span class="heading-primary-sub">Beautiful design, responsive for mobile, functional </span>
</h1>
<a href="#" class="btn btn-white btn-animated">Register</a>
</div>
</header><br><br>
<table role="table">
<thead role="rowgroup">
<tr role="row">
<th role="columnheader">Id</th>
<th role="columnheader">First name</th>
<th role="columnheader">Surname</th>
<th role="columnheader">Last name</th>
<th role="columnheader">Gender</th>
<th role="columnheader">Age</th>
<th role="columnheader">Position</th>
<th role="columnheader">Salary</th>
<th role="columnheader">Year of appointment</th>
<th role="columnheader">Total holidays</th>
<th role="columnheader">Remaining holidays</th>
<th role="columnheader">Delete</th>
</tr>
</thead>
<tbody role="rowgroup">
<tr role="row" class = "colorTable">
<td role="cell">1</td>
<td role="cell">John</td>
<td role="cell">Williams</td>
<td role="cell">Jones</td>
<td role="cell">Male</td>
<td role="cell">50</td>
<td role="cell">Backend</td>
<td role="cell">5000$</td>
<td role="cell">2017</td>
<td role="cell">30</td>
<td role="cell">20</td>
<td role="cell"> <button class = "deletebtn">delete</button></td>
</tr>
<tr role="row">
<td role="cell">2</td>
<td role="cell">Adam</td>
<td role="cell">Antonio</td>
<td role="cell">Harris</td>
<td role="cell">Male</td>
<td role="cell">35</td>
<td role="cell">HR</td>
<td role="cell">2700$</td>
<td role="cell">2018</td>
<td role="cell">30</td>
<td role="cell">7</td>
<td role="cell"> <button class = "deletebtn">delete</button></td>
</tr>
<tr role="row" class = "colorTable">
<td role="cell">3</td>
<td role="cell">Erick</td>
<td role="cell">Trevor</td>
<td role="cell">Phillips</td>
<td role="cell">Male</td>
<td role="cell">30</td>
<td role="cell">System Administrator</td>
<td role="cell">2400$</td>
<td role="cell">2020</td>
<td role="cell">30</td>
<td role="cell">18</td>
<td role="cell"> <button class = "deletebtn">delete</button></td>
</tr>
<tr role="row">
<td role="cell">4</td>
<td role="cell">Sara</td>
<td role="cell">Larson</td>
<td role="cell">Smith</td>
<td role="cell">Female</td>
<td role="cell">43</td>
<td role="cell">Backend</td>
<td role="cell">7000$</td>
<td role="cell">2016</td>
<td role="cell">30</td>
<td role="cell">19</td>
<td role="cell"> <button class = "deletebtn">delete</button></td>
</tr>
<tr role="row" class = "colorTable">
<td role="cell">5</td>
<td role="cell">Patrick</td>
<td role="cell">Samuel</td>
<td role="cell">Johnson</td>
<td role="cell">Non-binary</td>
<td role="cell">28</td>
<td role="cell">Frontend</td>
<td role="cell">2000$</td>
<td role="cell">2021</td>
<td role="cell">30</td>
<td role="cell">25</td>
<td role="cell"> <button class = "deletebtn">delete</button></td>
</tr>
</tbody>
</table>
<footer class="footer">
<p class="pcolor">
GinkoBiloba, Technologica internship
</p>
</footer>
</body>
</html>