In: Computer Science
Links out of Lists:
index.html:
<html>
<head>
<title>Welcome to my website</title>
<style>
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333;
}
li {
float: left;
}
li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
li a:hover {
background-color: #111;
}
</style>
</head>
<body>
<ul>
<li><a class="active"
href="#">Home</a></li>
<li><a href="#">My Career</a></li>
<li><a href="#">Future Plans</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">About</a></li>
</ul>
</body>
Output:
Hence, these are the ways in which the links can be made using the lists.
Home My Career Future Plans Contact About