tangycode

lillie page

Jun 29th, 2019
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.90 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>lillie page</title>
  6. <link rel="shortcut icon" href="favicon url">
  7.  
  8. <style type="text/css">
  9.  
  10. body {
  11. background:#fff;
  12. background-image:url('url here');
  13. background-attachment:fixed;
  14. font-size:14px;
  15. font-family:monospace;
  16. color:#000;
  17. }
  18.  
  19. a {
  20. color:#000;
  21. text-decoration:underline;
  22. -moz-transition-duration: 0.5s;
  23. -o-transition-duration: 0.5s;
  24. -webkit-transition-duration: 0.5s;
  25. transition-duration: 0.5s;
  26. }
  27.  
  28. a:hover {
  29. color:#000;
  30. background:red;
  31. -moz-transition-duration: 0.5s;
  32. -o-transition-duration: 0.5s;
  33. -webkit-transition-duration: 0.5s;
  34. transition-duration: 0.5s;
  35. }
  36.  
  37. .container {
  38. width:1000px;
  39. margin-left:auto;
  40. margin-right:auto;
  41. overflow:hidden;
  42. text-align:center;
  43. }
  44.  
  45. .title {
  46. font-size:24px;
  47. color:red;
  48. text-transform:uppercase;
  49. text-shadow:0 0 3px red;
  50. width:400px;
  51. margin:15px auto;
  52. }
  53.  
  54. .imgbox {
  55. width:400px;
  56. height:200px;
  57. margin:15px auto 15px auto;
  58. text-align:center;
  59. position:relative;
  60. }
  61.  
  62. .descbox {
  63. width:400px;
  64. height:250px;
  65. margin:0 auto;
  66. background:red;
  67. border:7px dotted #000;
  68. }
  69.  
  70. </style>
  71. </head>
  72. <body>
  73. <div class="container">
  74. <div class="title">lillie page</div>
  75. <div class="imgbox">
  76. <img src="https://i.gyazo.com/9e174e6957660efac6e273a27bead9b5.png" height="200px" width="400px">
  77. </div>
  78. <div class="descbox">
  79. <p>description here</p>
  80. </div>
  81. </div>
  82. </body>
  83. </html>
Advertisement
Add Comment
Please, Sign In to add comment