+ 1
Your answer -
<html>
<head>
<title>Vinay</title>
<style>
*{
}
body{
border: 1px solid red;
}
ul{
padding :0px;
margin:0px;
border:1px solid red;
}
li{
list-style-type: none;
padding:0px;
margin:0px;
float:left;
border: 1px solid red;
}
</style>
</head>
<body>
<header>
<ul>
<li>About</li>
<li>Contact</li>
<li>Feedback</li>
</ul>
</header>
</body>
</html>
0
Use the border tag in your list also , I solved it in the above code.



