-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCategory.html
More file actions
43 lines (43 loc) · 1.54 KB
/
Category.html
File metadata and controls
43 lines (43 loc) · 1.54 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
<!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>TechKnow</title>
<link rel="stylesheet" href="customstyle.css">
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" />
</head>
<body>
<section id="header">
<h2 class="logo">TechKnow</h2>
<div>
<ul id="navbar">
<li><a href="index.html">HOME</a></li>
<li><a href="about.html">ABOUT</a></li>
<div class="artbar">
<li><a href="Category.html">CATEGORY<i class="fas fa-caret-down"></i></a>
<div class="sub-menu">
<ul>
<li><a href="#">Cloud Fundamentals</a></li>
<li><a href="#">Docker</a></li>
<li><a href="#">Jenkins</a></li>
<li><a href="#">Kubernetes</a></li>
</ul>
</div>
</li>
</div>
<li><a href="resources.html">RESOURCES</a></li>
<li><a href="Case Studies.html">CASE STUDIES</a></li>
<li><a href="Projects">PROJECTS</a></li>
<li><a href="contact.html">CONTACT</a></li>
</ul>
</div>
</section>
<section id="page-header" class="resource-header">
<h2>Hi There!</h2>
<p>Get to know more about us!</p>
</section>
<script src="script.js"></script>
</body>
</html>