Advertisement
alpeltz

lemonade

Feb 12th, 2017
1,007
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.79 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>lemonade</title>
  6. <link href="/style.css" rel="stylesheet" type="text/css" media="all">
  7. <style>
  8. /*THEME BY PEACH FEEL FREE TO USE*/
  9. /*if you have multiple pages, add the text between <style> and </ style> in your style.css page */
  10. /*change background color/image*/
  11. body{
  12. background-color:#fffedb;
  13. background-image: url("http://scontent.cdninstagram.com/t51.2885-15/s480x480/e35/12139663_1661759744109004_901776641_n.jpg?ig_cache_key=MTEwNDQ2NTkzNzIxNDc3OTYyNA%3D%3D.2");
  14. background-size: 90px 90px;}
  15. /*change properties of the container*/
  16. .container{
  17. width:350px;
  18. margin-top:75px;
  19. margin-left: auto;
  20. margin-right:auto;
  21. background-color:white;
  22. box-shadow: 7px 7px #424242;}
  23. /*change properties of the area dedicated for the title*/
  24. .title{
  25. text-align: center;
  26. border-bottom: 1px solid black;
  27. padding: 10px 0px 10px 0px;
  28. font-size:18px;
  29. font-family: "Courier New";
  30. font-variant: small-caps;
  31. }
  32. /*change properties of the area dedicated for links at the bottom*/
  33. .links{
  34. text-align: center;
  35. border-top: 1px solid black;
  36. padding: 10px 0px 10px 0px;
  37. font-size:12px;
  38. font-family: "Courier New";
  39. font-variant: small-caps;
  40. }
  41. /*change font size/style*/
  42. .text{
  43. padding:10px;
  44. font-size: 14px;
  45. font-family: courier;
  46. }
  47. /*change link color*/
  48. a:link {color:#969431;}
  49. /*dont delete*/
  50. .credit{
  51. font-size: 12px;
  52. position: absolute;
  53. bottom: 0;
  54. right: 0;}
  55. </style>
  56. </head>
  57. <body>
  58. <div class="container">
  59. <div class="title">
  60. <p>Welcome to my Website!</p>
  61. </div>
  62. <div class="text">
  63. <p>This is a paragraph! Here's how you make a link: <a href="http://neocities.org">Neocities</a>.</p>
  64.  
  65. <p>Here's how you can make <strong>bold</strong> and <em>italic</em> text.</p>
  66.  
  67. <p>Here's how you can add an image:</p>
  68. <img src="http://t00.deviantart.net/x2RJ-7FDulpKpO4hC32n1meUNis=/fit-in/150x150/filters:no_upscale():origin()/pre07/e1f7/th/pre/f/2015/029/4/a/pixel_lemonade_by_inked_kitsune-d8fus5w.png" style="width:75px;">
  69.  
  70. <p>Here's how to make a list:</p>
  71.  
  72. <ul>
  73. <li>First thing</li>
  74. <li>Second thing</li>
  75. <li>Third thing</li>
  76. </ul>
  77.  
  78. <p>To learn more HTML/CSS, check out these <a href="http://neocities.org/tutorials">tutorials</a>!</p>
  79.  
  80. </div>
  81. <div class="links">
  82. <p><a href="/themes.html">back</a></div>
  83. </div>
  84. <!-- please dont delete also feel free to dm me if you have questions about coding !-->
  85. <div class="credit">
  86. <a href="http://twitter.com/princesspcach">@peachie</a>
  87. </body>
  88. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement