forked from jimmy-byte/Hacktoberfest2023-codeshell
-
Notifications
You must be signed in to change notification settings - Fork 1
/
navi.html
45 lines (41 loc) · 762 Bytes
/
navi.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
<!DOCTYPE html>
<html>
<head>
<style>
nav {
border: 1px;
background-color: green;
color: white;
padding: 6px;
}
a {
text-decoration: none;
color: white;
font-size: 20px;
}
</style>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h2>HTML nav Tag</h2>
<!-- nav tag starts -->
<nav>
<a href=
"https://www.geeksforgeeks.org/">
Home</a> |
<a href=
"https://www.geeksforgeeks.org/company-interview-corner/">
Interview</a> |
<a href=
"https://www.geeksforgeeks.org/gate-cs-notes-gq/">
Gate</a> |
<a href=
"https://www.geeksforgeeks.org/data-structures/">
Data Structure</a> |
<a href=
"https://www.geeksforgeeks.org/fundamentals-of-algorithms/">
Algorithm</a>
</nav>
<!-- nav tag ends -->
</body>
</html>