How can I make a cute html drop down menu navigation?

Asked By 60 points N/A Posted on -
qa-featured

I am a new web designer . I know HTML and CSS very well . Now I need to make cute html drop down menu navigation . But I don't know how I can start and what is the process to make it easily . Please any one help me .

SHARE
Best Answer by Jeremy J McPhail
Answered By 10 points N/A #159465

How can I make a cute html drop down menu navigation?

qa-featured

 

Hey Hamilton,

That's great even I'm a newbie to web designing. Now a days every websites are having this(Drop down) kind of menus, as they are simple and easy to use. There is a blog called Line 25 which provides tutorials on web designing they have the code for the same below is the link to drop down menu check it out.

https://line25.com/tutorials/how-to-create-a-pure-css-dropdown-menu

Regards Ian M Tyner

 
Best Answer
Best Answer
Answered By 50 points N/A #159466

How can I make a cute html drop down menu navigation?

qa-featured

Hello, Hamilton

Hope you are fine.

http://www.w3school.com   is a website that provides each and every tutorial for web designing. You may try it. Otherwise you can buy software or download a 30 day trial version.

You won’t need to know any Java script if you use this software. Otherwise Put this source code  in the body of an HTML document. It will display a drop-down list with the options "Apple", "Banana", and "Grape".

<form action="">

<select name="fruit">

<option value="apple">Apple</option> <option value="banana">Banana</option> <option value="grape">Grape</option>

</select>

</form>

Hope you will get your answer.

Related Questions