tangycode

venus page

Jul 28th, 2019
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.93 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>venus page</title> <!--change the tab title here-->
  6. <link rel="shortcut icon" href="favicon url"> <!--put the url for your favicon here-->
  7. <link href="https://fonts.googleapis.com/css?family=Darker+Grotesque&display=swap" rel="stylesheet">
  8.  
  9. <style type="text/css">
  10.  
  11. * {
  12. box-sizing:border-box;
  13. }
  14.  
  15. body {
  16. background:#fff; /*change background color here*/
  17. background-image:url('url here'); /*if you want a tiling background, put the url here*/
  18. background-attachment:fixed;
  19. color:#000; /*change general text color here*/
  20. font-family:'Darker Grotesque', sans-serif;
  21. font-size:18px;
  22. }
  23.  
  24. a {
  25. color:#8098A6; /*change general link color here*/
  26. font-style:italic; /*this makes the links italic, remove if you would not like that*/
  27. text-decoration:none; /*remove this if you want links to have underlines*/
  28. -moz-transition-duration: 0.5s;
  29. -o-transition-duration: 0.5s;
  30. -webkit-transition-duration: 0.5s;
  31. transition-duration: 0.5s;
  32. }
  33.  
  34. a:hover {
  35. color:#000; /*change the color of links on hover*/
  36. -moz-transition-duration: 0.5s;
  37. -o-transition-duration: 0.5s;
  38. -webkit-transition-duration: 0.5s;
  39. transition-duration: 0.5s;
  40. }
  41.  
  42. #container {
  43. width:100%;
  44. overflow:hidden;
  45. margin:0 auto;
  46. }
  47.  
  48. #image {
  49. height:auto;
  50. width:auto;
  51. display:table;
  52. position:relative;
  53. float:left;
  54. }
  55.  
  56. #image img {
  57. border:1px solid #000; /*change image border size, type, and color*/
  58. }
  59.  
  60. .textbelow {
  61. height:auto;
  62. width:100%;
  63. position:relative;
  64. display:table-caption;
  65. caption-side:bottom;
  66. }
  67.  
  68. .textbeside {
  69. height:auto;
  70. width:auto;
  71. margin-left:25px;
  72. position:relative;
  73. float:left;
  74. }
  75.  
  76. </style>
  77. </head>
  78. <body>
  79. <div id="container">
  80. <div id="image">
  81. <!--change url here to image that you want-->
  82. <img src="https://cdn.discordapp.com/attachments/433840080793370624/605107193146114053/1500135725.meesh_hypnohelp_rs1.png">
  83. <div class="textbelow">
  84. <!--text below image starts here-->
  85. <p>text text text text text text text text text text text text text text text text text text text text text </p>
  86. <!--text below image ends here-->
  87. </div>
  88. </div>
  89. <div class="textbeside">
  90. <!--text beside image starts here-->
  91. <p>texttext text text text text text text text text text text text text text text text text text text text text text</p>
  92. <!--text beside image ends here-->
  93. </div>
  94. </div>
  95. </body>
  96. </html>
Advertisement
Add Comment
Please, Sign In to add comment