hello buddy, just now i leaning html programs...i want simple program coding..anybody help me i want order list and unorder list programs i tried but not getting correct output this is my program order list <html> <head> <title>order list</title> </head> <body> <ol> <li>coffee</li> <li>tea</li> <li>milk</li> </ol> </body> </html> unorder list <html> <head> <title>unorder list</title> </head> <ul> <li>coffee</li> <li>tea</li> <li>milk</li> </ul> </body> </html> i got output this only order list 1.coffee 2.tea 3.milk unorder list .coffee .tea .milk but i want this way order list program we are giving input is random list but we want output is alphabetic or numeric order list unorder list program we are giving input is order list we want output is random or unorder list. <html> <head> <title>order list</title> </head> <body> <ol> <li>Milk</li> <li>coffee</li> <li>tea</li> </ol> </body> </html> order list output want this way coffee milk tea unorder <html> <head> <title>unorder list</title> </head> <body> <ul> <li>coffee</li> <li>milk</li> <li>tea</li> </ul> </body> </html> unorder list output want this way milk tea coffee anybody give solution. thanks
Style your <ul> with the property list-style-type and the value "none" Example: For a beginer there is no place like http://www.w3schools.com Try this for lists http://www.w3schools.com/css/tryit.asp?filename=trycss_list-style-type_ex