<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Document</title>
<link rel="stylesheet" type="text/css" href="style.css">
<style>
ul{
background-color: green;
list-style-type: none;
//border: 1px solid red;
overflow: auto;
}
li{
color: white;
padding: 10px 15px;
float:left;
cursor: pointer;
}
</style>
</head>
<body>
<ul>
<li style="cursor: pointer;">Home</li>
<li>About us</li>
<li>Team</li>
<li>Contact us</li>
<li>Donate</li>
</ul>
</body>
</html>