-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (51 loc) · 1.63 KB
/
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
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
<!--
______________________________________________________________________________________________
| |
| Copyright 2024 ag-sanjjeev |
| |
| The source code is licensed under MIT-style License. |
| The usage, permission and condition are applicable to this source code as per license. |
| That can be found in LICENSE file or at https://opensource.org/licenses/MIT. |
|______________________________________________________________________________________________|
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<!-- Custom CSS -->
<link rel="stylesheet" type="text/css" href="./main.css" media="all">
<title>Mulit Level Drop Down Menu</title>
</head>
<body>
<nav>
<div class="f-left">
<a href="#">Home</a>
<a href="#">About</a>
<a href="#">Contact</a>
</div>
<div class="f-right">
<details>
<summary>
<span>Profile</span>
</summary>
<ul>
<li><a href="#">View</a></li>
<li>
<details>
<summary>
<span>Setting</span>
</summary>
<ul>
<li><a href="#">Change Password</a></li>
<li><a href="#">Change Profile Picture</a></li>
</ul>
</details>
</li>
<li><a href="#">Logout</a></li>
</ul>
</details>
</div>
</nav>
</body>
</html>