Advertisement
Guest User

html

a guest
Sep 6th, 2018
669
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3. <html> <head> <meta charset="utf-8">
  4.  
  5. <style>
  6. body {
  7. background-image: Url(link here);
  8. background-size: cover;
  9. }
  10.  
  11. #idiv {
  12. width: 32%;
  13. height: 50vh;
  14. margin-left: 35.8%;
  15. margin-top: 23.5%;
  16. display: flex;
  17. }
  18.  
  19. .colums {
  20. flex: auto;
  21. }
  22.  
  23. .wrapper {
  24. margin-top: 20px;
  25. text-align: middle;
  26. font-size: 3em;
  27. cursor: pointer;
  28. }
  29.  
  30. .YourLinks {
  31. text-shadow:
  32. -1px -1px 0 #000,
  33. 1px -1px 0 #000,
  34. -1px 1px 0 #000,
  35. 1px 1px 0 #000;
  36. color: white;
  37. text-decoration: none;
  38. }
  39.  
  40. </style>
  41.  
  42. <body>
  43. <div id="idiv">
  44. <div class="colums">
  45. <div class="wrapper">
  46. <a href="http://boards.4chan.org/c/catalog" class="YourLinks">可愛い</a>
  47. </div>
  48. </div>
  49. <div class="colums">
  50. <div class="wrapper">
  51. <a href="https://danbooru.donmai.us" class="YourLinks">簿おる</a>
  52. </div>
  53. </div>
  54. <div class="colums">
  55. <div class="wrapper">
  56. <a href="http://boards.4chan.org/g/catalog" class="YourLinks">技術</a>
  57. </div>
  58. </div>
  59. </div>
  60. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement