<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Home Bookmark Page</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<link href="css/normalize.css" rel="stylesheet" media="all">
<link href="css/styles.css" rel="stylesheet" media="all">
</head>
<body>
<header role="baer">
<h1>home bookmark page</h1>
<nav>
<ul>
<li><a class="active" href="#index.html">Home</a></li>
<li><a href="mail.html">Mail</a></li>
<li><a href="banking.html">Banking</a></li>
<li><a href="bills.html">Bills</a></li>
<li><a href="work.html">Work</a></li>
<li><a href="fun.html">Fun</a></li>
</ul>
</nav>
</header>
</body>
</html>
css:
ul {
list-style-type: none;
margin: 0;
padding: 0;
width: 200px;
background-color: #f1f1f1;
border: 1px solid #555;
}
li a {
display: block;
color: #000;
padding: 8px 16px;
text-decoration: none;
}
li {
text-align: center;
border-bottom: 1px solid #555;
}
li:last-child {
border-bottom: none;
}
li a.active {
background-color: rgb(61, 204, 240);
color: white;
}
li a:hover:not(.active) {
background-color: #555;
color: white;
}
برچسب:
نویسنده: آیلین رضوانی