-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcompanyprofile.php
46 lines (45 loc) · 1.48 KB
/
companyprofile.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>company profile</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
</head>
<body>
<div class="header">
<nav>
<div class="logo">
<h2 onclick="window.location.href='index.php'">Job Portal</h2>
</div>
<div class="notification-icon" onclick="window.location.href='notification.php'">
<i class="fas fa-bell"></i>
</div>
<div class="profile" onclick="window.location.href='profile.php'">
<img src="Images/profile.png" alt="" width=25px>
</div>
</nav>
</div>
<footer id="footer">
<div class="footer-content">
<div class="logo">
<h2>Job Portal</h2>
</div>
<div class="socail-links">
<i class="fa-brands fa-twitter"></i>
<i class="fa-brands fa-facebook-f"></i>
<i class="fa-brands fa-instagram"></i>
<i class="fa-brands fa-youtube"></i>
<i class="fa-brands fa-pinterest-p"></i>
</div>
</div>
<div class="footer-bottom-content">
<p>Designed By Job Portal teams</p>
<div class="copyright">
<p>©Copyright <strong>Job portal</strong>.All Rights Reserved</p>
</div>
</div>
</footer>
</body>
</html>