-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNavigation.html
More file actions
71 lines (67 loc) · 2.1 KB
/
Navigation.html
File metadata and controls
71 lines (67 loc) · 2.1 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
body{
overflow: scroll;
}
body::-webkit-scrollbar{
display: none;
}
ul{
margin: 0px;
padding: 0px;
position: absolute;
top: 0px;
left: 0px;
list-style-type: none;
display: flex;
justify-content: space-between;
align-items: start;
height: 30px;
background-color: black;
}
li{
text-align: center;
display: inline-block;
width: 70px;
height: 20px;
padding: 5px;
}
a{
display: inline-block;
color: white;
}
li:hover{
background-image: linear-gradient(#a504ff,#804efe);
}
li:active{
background-image: linear-gradient(#804efe,#a504ff);
}
</style>
</head>
<body>
<ul>
<a target="_parent" href="What is HTML.html"><li>HTML</li></a>
<a target="_parent" href=""><li>CSS</li></a>
<a target="_parent" href=""><li>Javasript</li></a>
<a target="_parent" href=""><li>React</li></a>
<a target="_parent" href=""><li>Next</li></a>
<a target="_parent" href=""><li>Bootstrap</li></a>
<a target="_parent" href=""><li>Angular</li></a>
<a target="_parent" href=""><li>Node</li></a>
<a target="_parent" href=""><li>Java</li></a>
<a target="_parent" href=""><li>Python</li></a>
<a target="_parent" href=""><li>Numpy</li></a>
<a target="_parent" href=""><li>Django</li></a>
<a target="_parent" href=""><li>Pandas</li></a>
<a target="_parent" href=""><li>Kotlin</li></a>
<a target="_parent" href=""><li>C</li></a>
<a target="_parent" href=""><li>C++</li></a>
<a target="_parent" href=""><li>C#</li></a>
<a target="_parent" href=""><li>AI</li></a></ul>
</body>
</html>