Advertisement
JUNIORCEDE1

Untitled

Apr 28th, 2021
868
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.59 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5.  
  6.  .correcto::before {
  7.   content: "\25B7";
  8. }
  9.  
  10. .incorrecto::before {
  11.   content: "\26CC";
  12. }
  13.  
  14. .seleccion::before {
  15.   content: "\2754";
  16. }
  17.  
  18. .a::before {
  19.   content: "A";
  20. }
  21.  
  22. .b::before {
  23.   content: "B";
  24. }
  25.  
  26. .c::before {
  27.   content: "C";
  28. }
  29.  
  30. .d::before {
  31.   content: "D";
  32. }
  33. </style>
  34. </head>
  35. <body>
  36. <span class="correcto"></span><br>
  37. <span class="incorrecto"></span><br>
  38. <span class="seleccion"></span><br>
  39. <span class="a"></span><br>
  40. <span class="b"></span><br>
  41. <span class="c"></span><br>
  42. <span class="d"></span><br>
  43.  
  44. </body>
  45. </html>
  46.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement