HTML CSS examples for CSS Widget:UL Element
Creating a list of clickable elements
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> a.facebook:before { background:url('https://www.java2s.com/style/demo/Google-Chrome.png'); width:22px; height:22px; content:" ";<!-- ww w. j av a 2s .com--> display:inline-block; } </style> </head> <body> <li> <a class="facebook" href="thisIsYourFacebookPage.html">Lorem ipsum dolo</a> </li> </body> </html>