Comment afficher ce symbole de flèche de lecture (Forward) ou de flèche solide vers la droite en html ?
Réponses
Trop de publicités?
Utilisateur non enregistré
Points
0
Vous pouvez utiliser les glyphicons de Bootstrap.
<span class="glyphicon glyphicon-play"></span><br>
<span class="glyphicon glyphicon-play-circle"></span><br>
<span class="glyphicon glyphicon-triangle-right"></span><br>
N'oubliez pas d'inclure également Bootstrap et jQuery dans le fichier <head>
élément.
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js">
</script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
</head>
JSFiddle explique cela : https://jsfiddle.net/canada/dfr90pac/
karan k
Points
371
- Réponses précédentes
- Plus de réponses