Advertisement
impheart

Untitled

Jun 21st, 2025 (edited)
369
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.50 KB | Source Code | 0 0
  1.  
  2. <!DOCTYPE html>
  3. <html lang="en">
  4. <head>
  5. <meta charset="UTF-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Pastel Theme</title>
  8. <link href="https://fonts.googleapis.com/css2?family=Shadows+Into+Light&display=swap" rel="stylesheet">
  9. <style>
  10. body {
  11. font-family: 'Shadows Into Light', cursive;
  12. background-color: #f6e6e6; /* Pastel background color */
  13. margin: 0;
  14. padding: 0;
  15. }
  16.  
  17. .sidebar {
  18. height: 100%;
  19. width: 200px;
  20. position: fixed;
  21. top: 0;
  22. left: 0;
  23. background-color: #f7d9aa; /* Pastel sidebar color */
  24. padding-top: 20px;
  25. }
  26.  
  27. .sidebar a {
  28. display: block;
  29. padding: 10px;
  30. text-decoration: none;
  31. color: #574d4d; /* Sidebar link color */
  32. }
  33.  
  34. .content {
  35. margin-left: 200px;
  36. padding: 20px;
  37. }
  38.  
  39. .button {
  40. background-color: #ffd3b6; /* Pastel button color */
  41. color: #574d4d; /* Button text color */
  42. padding: 10px 20px;
  43. border: none;
  44. border-radius: 5px;
  45. cursor: pointer;
  46. transition: background-color 0.3s;
  47. }
  48.  
  49. .button:hover {
  50. background-color: #f7d9aa; /* Button hover color */
  51. }
  52. </style>
  53. </head>
  54. <body>
  55. <div class="sidebar">
  56. <a href="#">Link 1</a>
  57. <a href="#">Link 2</a>
  58. <a href="#">Link 3</a>
  59. </div>
  60. <div class="content">
  61. <h1>Apricot Dream</h1>
  62. <p>This is a cute and pastel-themed webpage with a sidebar containing links.</p>
  63. <button class="button">Click Me</button><br>
  64. <a href="https://www.glitter-graphics.com"><img src="apricot.png" style="position:absolute; bottom:0px; right:0px;" width=180 height=133 border=0></a><br>
  65. </div>
  66. </body>
  67. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement