Просмотр поста

.
jasp3r
<!DOCTYPE html> 
<html lang="ru"> 
<head>
  <meta charset="utf-8">
  <title>страница</title>
  <style>
    html, body {
      background: #fefefe;
      color: #999;
      margin: 0 auto;
      font: 14px verdana;
    }
    
    a:link,
    a:visited {
      color: #777;
      text-decoration: none;
      padding: 15px;
    }
    
    a:hover, 
    a:active {
      color: #333;
      text-decoration: underline;
    }
    
    ul,
    li {
      margin: 0;
      padding: 0;
      list-style: none;
      background: #cecece;
      border-bottom: 1px solid #999;
    }
    
    ul li a {
      display: block;
      background: url(http://johncms.com/images/bb/smileys.gif) no-repeat right;
    }
  </style>
</head>
<body>
  <ul>
    <li><a href="#">Твоя ссылка</a>
  </ul>
</body>
</html>