7isenko

Мишень

Oct 31st, 2019
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.63 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <head><link rel="stylesheet" href="style.css"></head>
  3. <body>
  4. <svg width="300" height="300" xmlns="http://www.w3.org/2000/svg" id="graph">
  5.     <circle cx="150" cy="150" r="150" class="out"/>
  6.     <circle cx="150" cy="150" r="140" class="in"/>
  7.     <circle cx="150" cy="150" r="100" class="out"/>
  8.     <circle cx="150" cy="150" r="90" class="in"/>
  9.     <circle cx="150" cy="150" r="50" class="out"/>
  10.     <circle cx="150" cy="150" r="40" class="in"/>
  11.     <circle cx="150" cy="150" r="5" class="out"/>
  12. </svg>
  13. </body>
  14.  
  15.  
  16. #graph {
  17.      fill: white;
  18.  }
  19.  
  20. #graph .out {
  21.     fill: black;
  22. }
  23.  
  24. #graph .in {
  25.     fill: white;
  26. }
Add Comment
Please, Sign In to add comment