How to Create a CSS3 Dropdown Menu [Tutorial]
![Preview Preview](https://ucc.alicdn.com/notfound.png?x-oss-process=image/resize,w_1400/format,webp)
Topic: CSS3
Difficulty: Beginner
Estimated Completion Time: 20 mins
In this tutorial we will code in pure CSS3 the Navigation Menu that you can find in Impressionist UI by Vladimir Kudinov.
Step 1 – HTML Markup
We will create an unordered list with a list item and an anchor tag for each menu link. To create the sub menu add another unordered list inside of the list.
3 |
< li >< a href = "#" >My dashboard</ a ></ li > |
4 |
< li >< a href = "#" >Likes</ a ></ li > |
5 |
< li >< a href = "#" >Views</ a > |