Documento sin título

Me Gusta

HTML

XXXXX

XXXXX

Ejemplo content

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin título</title>
<style>
ul {
    list-style: none; /* Remove list bullets */
    padding: 0;
    margin: 0;
}

li {
    padding-left: 16px;
}

li:before {
    content: "•"; /* Insert content that looks like bullets */
    padding-right: 8px;
    color: blue; /* Or a color you prefer */
}
</style>
</head>

<body>

<ul>
  <li>primer elemento</li>
  <li>segundo elemento</li>
  <li>tercer elemento</li>
</ul>

</body>
</html>
lo tuve que hacer asi:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin título</title>
<style>
ul {
    list-style: none; /* Remove list bullets */
    padding: 0;
    margin: 0;
}

li {
    padding-left: 16px;
}
.contet:before {
    content: "*";
    padding-right: 8px;
    color: #F00
}
</style>
</head>

<body>

<ul>
  <li class="contet">primer elemento</li>
  <li class="contet">segundo elemento</li>
  <li class="contet">tercer elemento</li>
</ul>

</body>
</html>
porque sino me ponia los li principales de la pagina con los circulitos rojos tambien
Documento sin título
  • primer elemento
  • segundo elemento
  • tercer elemento