-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
26 lines (23 loc) · 899 Bytes
/
index.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
<!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>Dropdown Menu - animation effect</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="dropdown-menu">
<button class="dropdown-toggle">Topics</button>
<ul class="dropdown-list">
<li class="dropdown-list__item" style="--delay:0.2s">Front-end</li>
<li class="dropdown-list__item" style="--delay:0.4s">Back-end</li>
<li class="dropdown-list__item" style="--delay:0.6s">SEO</li>
<li class="dropdown-list__item" style="--delay:0.8s">Digital marketing</li>
</ul>
</div>
</div>
</body>
</html>