Bonjour,

Je cherche comment insérrer une coche sur une image
J'ai trouvé ça mais je ne connais rien en html :
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>Comment créer des cases à cocher HTML sous forme d'images ?</title>
<style>
input[name="cases"] {
position: absolute;
opacity: 0;
width: 0;
height: 0;
}
input[name="cases"] + img {
cursor: pointer;
}
input[name="cases"]:checked + img {
outline: 4px solid #F79517;
}
</style>
</head>
<body>
<label>
<input type="radio" name="cases" value="0">
<img src="http://placehold.it/100x100" alt="">
</label>

<label>
<input type="radio" name="cases" value="1">
<img src="http://placehold.it/100x100" alt="">
</label>

<label>
<input type="radio" name="cases" value="2">
<img src="http://placehold.it/100x100" alt="">
</label>
</body>
</html>

Voici le l'image en question avec la coche :
https://ibb.co/ChMm0Tw

C'est pour faire un inventaire de stockage.
C'est à dire quand je clicque sur l'image, je voudrai avoir la coche même après ma déconnexion.
La coche disparait que si je reclique sur l'image
Si vous pouvez m'aider, je vous remercie par avance.

Bonne journéee

Aucune réponse