-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (51 loc) · 1.17 KB
/
index.html
File metadata and controls
60 lines (51 loc) · 1.17 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Refresh" contenst="0.5" />
<link rel="stylesheet" type="text/css" href="css/style.css" >
<title>Department</title>
</head>
<body>
<div class="main_body">
<div class="main_button">
<a href="index.html">
<div>Department</div>
</a>
<a href="emp.html">
<div>Employee</div>
</a>
</div>
<div class="data_table">
<div class="row" id="fields">
<div class="cell">name</div>
</div>
<!-- ghost row -->
<div class="row">
<div class="cell"></div>
</div>
<div class="row data">
<div class="cell">
<span>Cook</span>
<div id="button_block">
<img src="icon_edit.png" class='edit_button'>
<img src="icon_delete.png" class='remove_button'>
</div>
</div>
</div>
</div>
<div id="input_block">
<div class="input_line">
<div class="input_name">
name
</div>
<div class="input_field">
<input type="text" name="Enter name" id='dep_name'>
</div>
</div>
</div>
<div class="green_button" id="add_button">+</div>
<div class="green_button" id="ok_button">✔</div>
</div>
<script src="js/scripts.js"></script>
</body>
</html>