omelet

🧃 crd co codes

Mar 3rd, 2022
1,101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.76 KB | None | 0 0
  1. notes: please cr itzhuo if you are going to make this crd!!!
  2.  
  3.  
  4. ---- container with the bg ----
  5. html>
  6. <head>
  7. <style>
  8. .lace {
  9. border-width:7px;
  10. border-style:solid;
  11. border-image: url("https://i.imgur.com/NJa4bp2.png") 8 fill round;
  12. }
  13. </style>
  14. </head>
  15. <body>
  16.  
  17. <img class=lace src="IMAGE URL GOES HERE" alt="." style="width:275px;height:150px;border-radius:10px;"> <!--- ur img link goes here! this also works with containers--->
  18.  
  19. </body>
  20. </html>
  21.  
  22.  
  23. ---- image code ----
  24. <style>
  25.  
  26. #photo {
  27. position: absolute;
  28. bottom: -110px;
  29. z-index: 1;
  30. }
  31.  
  32. img {
  33. border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
  34. border: 3px solid white;
  35. }
  36.  
  37. body {
  38. padding-top: 1em;
  39. }
  40.  
  41. </style>
  42. <body>
  43. <div id="photo">
  44. <div align="left">
  45. <img src="IMAGE URL GOES HERE" alt="." style="width:95px;height:95px;">
  46. </div>
  47. </div>
  48. </body>
  49.  
  50.  
  51. ---- basic info ----
  52. <head>
  53.  
  54. <link rel="preconnect" href="https://fonts.googleapis.com">
  55. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  56. <link href="https://fonts.googleapis.com/css2?family=Fredoka+One&display=swap" rel="stylesheet">
  57.  
  58. </head>
  59.  
  60. <style>
  61.  
  62. #info {
  63. font-family: 'Fredoka One', cursive;
  64. color: #fff;
  65. text-shadow: -1px 0 #000, 0 1px #000, 1px 0 #FFFFFF00, 0 -1px #fffFFF00, 0 0;
  66. font-size:12px;
  67. position:relative;
  68. bottom: -150px;
  69. left: 1px;
  70. z-index:1;
  71. }
  72.  
  73. </style>
  74.  
  75. <div id="info"><div align="center">
  76. info info info
  77. <p></p>
  78. info info
  79. <p></p>
  80. info info
  81. </div></div>
  82.  
  83.  
  84. ---- links ----
  85. <head>
  86.  
  87. <link rel="preconnect" href="https://fonts.googleapis.com">
  88. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  89. <link href="https://fonts.googleapis.com/css2?family=Fredoka+One&display=swap" rel="stylesheet">
  90.  
  91. </head>
  92.  
  93. <style>
  94.  
  95. #nice {
  96. font-family: 'Fredoka One', cursive;
  97. color: #221f1f;
  98. text-shadow: -1px 0 #000, 0 1px #000, 1px 0 #FFFFFF00, 0 -1px #fffFFF00, 0 0;
  99. font-size:9px;
  100. position:absolute;
  101. bottom: -30px;
  102. z-index:1;
  103. }
  104.  
  105. a.three:link,a.three:visited {
  106. text-shadow: -1px 0 #000, 0 1px #000, 1px 0 #FFFFFF00, 0 -1px #fffFFF00, 0 0; /* change the second text shadow here */
  107. font-size:9px;
  108. font-weight:normal;
  109. color: #fff; /* change the second text color here */
  110. text-align: left;
  111. text-decoration: none;
  112. }
  113.  
  114. </style>
  115.  
  116. <div id="nice"><div align="left">
  117. <font color="#FFF">links ā˜† </font>
  118. <a class="three" href="link url"> link. </a>
  119. <a class="three" href="link url"> link. </a>
  120. <a class="three" href=""> <3. </a>
  121. </div></div>
  122.  
  123.  
  124. ---- name ----
  125. <style>
  126. @font-face {
  127. font-family: lovely;
  128. src: url(https://dl.dropbox.com/s/xde2bkhiie1bm8r/LovelyRegular.ttf);
  129. }
  130.  
  131. #text02 {
  132. position:relative;
  133. top:-180px;
  134. left: -20px;
  135. z-index:1;
  136. text-shadow: -1px 0 #000, 0 1px #000, 1px 0 #FFFFFF00, 0 -1px #FFFFFF00, 0 0;
  137. font-family: lovely;
  138. color: #fff;
  139. font-size: 45px;
  140. transform: rotate(-20deg);
  141. }
  142. </style>
  143.  
  144. <div id="text02"><div align="left">name</div></div>
  145.  
  146.  
  147. ---- scrollboxes ----
  148. <head>
  149.  
  150. <link rel="preconnect" href="https://fonts.googleapis.com">
  151. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  152. <link href="https://fonts.googleapis.com/css2?family=Mali:wght@500;700&display=swap" rel="stylesheet">
  153.  
  154. </head>
  155. <style>
  156. #scroll1 { /* use this for all of the containers just change the number and if you want play around with the position */
  157. height: 100px;
  158. width: 150px;
  159. padding: 7px;
  160. background: rgba(255, 255, 255, 0.75);
  161. border-radius:8px;
  162. font-family: 'Mali', cursive;
  163. line-height: 1.3;
  164. font-size:9px;
  165. overflow: auto;
  166. position: absolute;
  167. top: -180px;
  168. z-index: 1;
  169. }
  170.  
  171. #scroll1::-webkit-scrollbar {
  172. display: none;
  173. }
  174.  
  175. </style>
  176. <div id="scroll1"><div align="left">
  177. hi!! i’m <strong> name </strong> info info info info info info info info info
  178. <p></p>
  179. Ķ Ķ Ķ
  180. <p></p>
  181. <strong> i like: </strong> info info info info info info info info info info info info</div>
  182.  
  183.  
  184. ---- menu ----
  185. <head>
  186.  
  187. <link rel="preconnect" href="https://fonts.googleapis.com">
  188. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  189. <link href="https://fonts.googleapis.com/css2?family=Fredoka+One&display=swap" rel="stylesheet">
  190.  
  191. </head>
  192.  
  193. <style>
  194.  
  195. #lol {
  196. font-family: 'Fredoka One', cursive;
  197. color: #fff;
  198. text-shadow: -1px 0 #000, 0 1px #000, 1px 0 #FFFFFF00, 0 -1px #fffFFF00, 0 0;
  199. font-size:14px;
  200. position:absolute;
  201. top: -75px;
  202. z-index:1;
  203. }
  204.  
  205. a.one:link,a.one:visited {
  206. text-shadow: -1px 0 #000, 0 1px #000, 1px 0 #FFFFFF00, 0 -1px #fffFFF00, 0 0; /* change the second text shadow here */
  207. font-size:16px;
  208. font-weight:normal;
  209. color: #fff; /* change the second text color here */
  210. text-align: left;
  211. text-decoration: none;
  212. }
  213.  
  214. </style>
  215.  
  216. <div id="lol"><div align="left">
  217. <a class="one" href="#h"> 00 . </a>
  218. <a class="one" href="#p1"> 01 . </a>
  219. <a class="one" href="#p2"> 02 . </a>
  220. <a class="one" href="#p3"> + . </a>
  221. </div></div>
Advertisement
Add Comment
Please, Sign In to add comment