Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4. <head>
  5. <title></title>
  6.  
  7. <style type="text/css">
  8. .circle{
  9. border-radius:50%;
  10. position:absolute;
  11. }
  12.  
  13. #one{
  14. width:100px;
  15. height:100px;
  16. background-color:lightblue;
  17. left:40%;
  18. top:30%;
  19. }
  20.  
  21. #two{
  22. width:200px;
  23. height:200px;
  24. background-color:lightgreen;
  25. left:20%;
  26. top:50%;
  27. }
  28.  
  29.  
  30. #three{
  31. width:50px;
  32. height:50px;
  33. background-color:rgba(148, 0, 211, 0.5);
  34. left:20%;
  35. top:10%;
  36. }
  37.  
  38. #four{
  39. width:30px;
  40. height:30px;
  41. background-color:rgba(250, 0, 100, 0.5);
  42. left:70%;
  43. top:80%;
  44. }
  45.  
  46. #five{
  47. width:250px;
  48. height:250px;
  49. background-color:magenta;
  50. opacity:0.6;
  51. left:60%;
  52. top:0%;
  53. }
  54. </style>
  55. </head>
  56.  
  57. <body>
  58. <a href="other-page.html"><div id="one" class="circle"></div></a>
  59. <a href="other-page.html"> <div id="two" class="circle"></div></a>
  60. <a href="other-page.html"><div id="three" class="circle"></div></a>
  61. <a href="other-page.html"> <div id="four" class="circle"></div></a>
  62. <a href="other-page.html"><div id="five" class="circle"></div></a>
  63. </body>
  64.  
  65. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement