-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss_menu_rollover.html
More file actions
27 lines (27 loc) · 845 Bytes
/
Copy pathcss_menu_rollover.html
File metadata and controls
27 lines (27 loc) · 845 Bytes
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
<! DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>css Drop-down Menu Demo</title>
<link rel="stylesheet" href="./css/menu_rollover.css">
</head>
<body>
<div class="wrap">
<div class="menu-container">
<ul class="menu">
<li>Home</li>
<li>About</li>
<li>Portfolio
<ul class="submenu">
<li>Page 1</li>
<li>Page 2</li>
<li>Page 3</li>
<li>Page 4</li>
</ul>
</li>
<li>contact</li>
</ul>
</div>
</div>
</body>
</html>