CSS Lists
<!DOCTYPE html> <html> <head> <style> ul { list-style-type: square; } ol { list-style-type: lower-alpha; } </style> </head> <body> <ul> <li>Milk</li> <li>Bread</li> <li>Eggs</li> </ul> <ol> <li>Preheat oven</li> <li>Mix ingredients</li> <li>Bake</li> </ol> </body> </html>