example.html 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <link rel="stylesheet" href="./../../reset.css">
  6. <link rel="stylesheet" href="./circle.css">
  7. <link rel="stylesheet" href="./circle-blue.css">
  8. <link rel="stylesheet" href="./circle-green.css">
  9. <link rel="stylesheet" href="./circle-red.css">
  10. <link rel="stylesheet" href="./circle-white.css">
  11. </head>
  12. <body>
  13. <div style="padding: 10px; background-color: gray;">
  14. <div class="radio-circle">
  15. <input type="radio" id="lbl_name" name="name" />
  16. <label for="lbl_name"></label>
  17. </div>
  18. <br><br>
  19. <div class="radio-circle blue">
  20. <input type="radio" id="lbl_name_blue" name="name" />
  21. <label for="lbl_name_blue"></label>
  22. </div>
  23. <br><br>
  24. <div class="radio-circle green">
  25. <input type="radio" id="lbl_name_green" name="name" />
  26. <label for="lbl_name_green"></label>
  27. </div>
  28. <br><br>
  29. <div class="radio-circle red">
  30. <input type="radio" id="lbl_name_red" name="name" />
  31. <label for="lbl_name_red"></label>
  32. </div>
  33. <br><br>
  34. <div class="radio-circle white">
  35. <input type="radio" id="lbl_name_white" name="name" />
  36. <label for="lbl_name_white"></label>
  37. </div>
  38. </div>
  39. </body>
  40. </html>