<!DOCTYPE html>
<html>
<head>
<title>Titre du document</title>
<style>
li {
display: inline-block;
width: 150px;
font-size: 20px;
color: #eeeeee;
}
li:nth-child(1) {
background: #1c87c9;
}
li:nth-child(2) {
background: #666666;
}
li:nth-child(3) {
background: #8ebf42;
}
</style>
</head>
<body>
<ul>
<li>Élément 1</li>
<li>Élément 2</li>
<li>Élément 3</li>
</ul>
</body>
</html>