Creating a list of clickable elements - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:UL Element

Description

Creating a list of clickable elements

Demo Code

ResultView the demo in separate window

<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>

Related Tutorials