This repository was archived by the owner on Jul 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathtask7.html
153 lines (131 loc) · 3.68 KB
/
task7.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
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<!DOCTYPE html>
<html>
<head>
<title>Task 7
</title>
<style>
* {
margin: 0;
padding: 0;
}
.navbar {
background-color: bisque;
border-radius: 10px;
display: flex;
}
.navbar ul {
list-style-type: none;
padding: 0;
margin: 0;
display: flex;
align-items: center;
}
.navbar li {
margin-right: 10px;
padding: 25px;
}
.navbar a {
text-decoration: none;
color: black;
padding: 8px 12px;
border-radius: 5px;
}
.dropdown {
position: relative;
display: inline-block;
}
.dropdown:hover {
background-color: rgb(25, 201, 250);
}
.dropdownclick:hover {
background-color: rgb(25, 201, 250);
}
.dropdown-content {
display: none;
position: absolute;
top: 68px;
box-shadow: 2px solid lightpink;
background-color: lightblue;
border-radius: 10px;
padding: 10px;
box-shadow: 5px 5px gray;
}
.dropdown:hover .dropdown-content {
display: block;
background-color: beige;
}
.dropdown-content a {
display: block;
padding: 5px;
border-radius: 5px;
transition: background-color 0.3s;
}
.dropdown-content a:hover {
background-color: pink;
}
.dropdownclick {
position: relative;
display: inline-block;
}
.dropdownclick.active .dropdownc-content {
display: block;
background-color: beige;
}
.dropdownc-content {
display: none;
position: absolute;
top: 68px;
background-color: lightblue;
border-radius: 10px;
padding: 10px;
box-shadow: 5px 5px gray;
}
.show {
display: block;
}
.dropdownc-content a {
display: block;
padding: 5px;
border-radius: 5px;
transition: background-color 0.3s;
}
.dropdownc-content a:hover {
background-color: gray;
}
</style>
</head>
<body>
<nav class="navbar">
<ul>
<li class="dropdown">
<a href="#">Hover</a>
<div class="dropdown-content">
<a href="https://github.com/ghost-git24">Profile</a>
<a href="https://github.com/CC-BHU">Coding Club</a>
<a href="https://github.com/ghost-git24/web-development">Repository</a>
</div>
</li>
<li class="dropdownclick" id="dropdownnn">
<a href="#">Click</a>
<div id="dp" class="dropdownc-content">
<a href="https://github.com/ghost-git24">Profile</a>
<a href="https://github.com/CC-BHU">Coding Club</a>
<a href="https://github.com/ghost-git24/web-development">Repository</a>
</div>
</li>
</ul>
</nav>
<script>
const d = document.getElementById("dropdownnn");
d.addEventListener('click', function () {
const dp = document.getElementById("dp");
if (dp.classList.contains("show")) {
dp.classList.remove("show");
}
else {
dp.classList.add("show");
}
})
</script>
</body>
</html>