-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcareer.html
More file actions
45 lines (42 loc) · 1.24 KB
/
career.html
File metadata and controls
45 lines (42 loc) · 1.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Career Portal</title>
<link rel="stylesheet" href="downloads.css" />
</head>
<body>
<!-- header is here -->
<header>
<img class="logo" src="logo-no-background.png" alt="logo" />
<nav>
<ul class="nav_links">
<li><a href="index.html">HOME</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Projects</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">Help</a></li>
</ul>
</nav>
<a class="cta" href="#"><button>Contact me</button></a>
</header>
<!-- main career content -->
<h3> hello career portal</h3>
<!-- footer is here -->
<footer>
<div class="footer_content">
<h3 style="color: rgba(44, 240, 86, 0.776); text-align: center">
studyNcode
</h3>
<h2 style="color: rgb(241, 8, 20); text-align: center">
© Copyright Reserved | Created with ❤️
</h2>
<ul class="socials">
<a href="#"></a>
</ul>
</div>
</footer>
</body>
</html>