-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaccounting.html
73 lines (70 loc) · 2.14 KB
/
accounting.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HR-Managment-System</title>
</head>
<body>
<link rel="stylesheet" href="style.css">
<header>
<h1>HR-Managment-System</h1>
<nav>
<ul id="navigation">
<li><a href="index.html">Index</a></li>
<li><a href="accounting.html">Accounting</a></li>
<li>
<input type="search" placeholder="Search" />
<input
type="submit"
value="Search"
id="search"
onclick="alert('For Real?')"
/>
</li>
</ul>
</nav>
</header>
</header>
<main>
<section id = 'myTable'> </section>
<script src="/Javscript/accounting.js"></script>
</main>
<footer>
<div id="cc">
<p>Copy Right Reserved @2020</p>
</div>
<div class="footer-container">
<div class="footer-1">
<h3>About Us</h3>
<a href="#">Blog</a>
<a href="#">Creators</a>
<a href="#">Staff</a>
<a href="#">Investors</a>
</div>
<div class="footer-2">
<h3>Contact Us</h3>
<a href="#">Jobs</a>
<a href="#">Support</a>
<a href="#">Contact</a>
<a href="#">Internship</a>
</div>
<div class="footer-3">
<h3>Social Media</h3>
<a href="#">Facebook</a>
<a href="#">Youtube</a>
<a href="#">Instagram</a>
<a href="#">Discord</a>
</div>
<div class="sub">
<h3>Subscribe to Our Newsletter</h3>
<div class="sub-box">
<input type="Email" placeholder="Type your Email" id="box" />
<input type="submit" value="Sign Up" id="signup-button" />
</div>
</div>
</div>
</footer>
</body>
</html>