<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
<style>
li {
color: #666666;
}
span {
position: relative;
left: -12px;
}
</style>
</head>
<body>
<ul>
<li>
<span>Text 1</span>
</li>
<li>
<span>Text 2</span>
</li>
<li>
<span>Text 3</span>
</li>
</ul>
</body>
</html>