Advertisement
vpenkoff

chart html

Feb 9th, 2021
990
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.92 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3.     <head>
  4.         <title> TEST </title>
  5.         <style>
  6. .chart {
  7.     height: 200px;
  8.     width: 200px;
  9.     position:relative;
  10. }
  11. .chart > div {
  12.     position:absolute;
  13.     top:0;
  14.     left:0;
  15.     right:0;
  16.     bottom:0;
  17.     border-radius: 50%;
  18.     clip: rect(0px, 100px, 200px, 0px);
  19. }
  20. .color1 {
  21.     transform:rotate(60deg);
  22.     border:50px solid blue;
  23. }
  24.  
  25. .color2 {
  26.     transform:rotate(240deg);
  27.     border:50px solid orange;
  28. }
  29.  
  30. .color3 {
  31.     transform:rotate(-72deg);
  32.     border:50px solid green;
  33. }
  34. .color4 {
  35.     transform:rotate(335deg);
  36.     border:50px solid red;
  37. }
  38.  
  39. .color5 {
  40.     border:50px solid purple;
  41. }
  42.  
  43.  
  44.         </style>
  45.     </head>
  46.     <body>
  47.         <div class="chart">
  48.             <div class="color1"></div>
  49.             <div class="color2"></div>
  50.             <div class="color3"></div>
  51.             <div class="color4"></div>
  52.         </div>
  53.     </body>
  54. </html>
  55.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement