не могу найти ошибку( менюшка двоится
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8">
<title>Испытание: вертикальное меню</title>
</head>
<body>
<ul class="main-menu">
<li class="1"><a href="#courses">Курсы</li></a>
<li class="2 active"><a href="#demo">Демонстрации</li></a>
<li class="3"><a href="#ppc">Участники</li></a>
<li class="4"><a href="#achive">Достижения</li></a>
<li class="5"><a href="#profile">Профиль</li></a>
</ul>
</body>
</html>
html,
body {
margin: 0;
padding: 0;
}
body {
width: 280px;
min-height: 280px;
padding: 10px;
font-family: “Arial”, sans-serif;
font-size: 14px;
line-height: 1.4;
background: #ecf0f1;
}
.main-menu{
list-style:none;
margin:0;
padding:0;
margin-top:15px;
width:200px;
}
.main-menu a{
text-decoration:none;
display: block;
border-bottom: 2px solid #2c3e50;
padding: 10px 15px;
background-color:#2980b9;
color:#ffffff;
}
.active a{
background:#1abc9c;
border-bottom:2px solid #2ecc71;}