Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> ul { border-left: 5px solid #8ebf42; background-color: #eee; list-style-type: none; padding: 10px 20px; } </style> </head> <body> <div id="container"> <ul> <li>Coffee</li> <li>Tea</li> <li>Milk</li> </ul> </div> </body> </html>