Created
December 6, 2017 14:05
-
-
Save kharakhordindemo/7aa088b4b413efe19629c24736fe6b07 to your computer and use it in GitHub Desktop.
menu3lavel.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Help</title> | |
<link rel="stylesheet" href="help.css" type="text/css"> | |
</head> | |
<body> | |
<nav> | |
<ul> | |
<li><a href="#">Main</a></li> | |
<li><a href="#">Lessons</a> | |
<ul> | |
<li><a href="#">HTML</a></li> | |
<li><a href="#">CSS</a></li> | |
<li><a href="#">JQuery</a> | |
<ul> | |
<li><a href="#">AJAX</a></li> | |
<li><a href="#">JQueryUI</a></li> | |
</ul> | |
</li> | |
</ul> | |
</li> | |
<li><a href="#">Articles</a> | |
<ul> | |
<li><a href="#">Security</a></li> | |
<li><a href="#"> Promotion</a></li> | |
</ul> | |
</li> | |
<li><a href="#">Other</a></li> | |
</ul> | |
</nav> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment