Advertisement
xxmakarovxx

songLyricsHTML

Aug 10th, 2023
25
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.36 KB | Source Code | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. body {
  6. background-color: #f0f0f0;
  7. }
  8. #poem-container {
  9. width: 80%;
  10. margin: 0 auto;
  11. padding: 20px;
  12. background-color: #fff;
  13. border-radius: 10px;
  14. box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  15. }
  16. .title {
  17. font: bold 18px "Lucida Calligraphy", cursive;
  18. text-align: center;
  19. }
  20. .author {
  21. font: 10px Verdana, sans-serif;
  22. text-align: center;
  23. margin-top: -10px;
  24. }
  25. .stanza {
  26. padding: 10px;
  27. margin: 10px 0;
  28. border-radius: 5px;
  29. }
  30. </style>
  31. </head>
  32. <body>
  33. <div id="poem-container">
  34. <div class="title">In the End</div><endln>
  35. <div class="author">By Linkin Park</div></endln>
  36. <div class="stanza" style="font: 15px 'Times New Roman', serif; text-align: center; background-color: yellow;">
  37. It starts with one thing, I don't know why
  38. </div>
  39. <div class="stanza" style="font: 17px 'Lucida Console', monospace; text-align: right; background-color: lime;">
  40. it doesn't even matter how hard you try,
  41. </div>
  42. <div class="stanza" style="font: 20px Cursive, cursive; text-align: center; background-color: aqua;">
  43. keep that in mind I design this rhyme to explain it to time.
  44. </div>
  45. <div class="stanza" style="font: 12px Fantasy, cursive; text-align: left; background-color: tomato;">
  46. all I know, time is a valuable thing watch it fly by as the pendolum swings
  47. </div>
  48. <div class="stanza" style="font: 18px Serif, serif; text-align: center; background-color: pink;">
  49. watch it count down till the end of the day, the clock ticks like the way
  50. </div>
  51. <div class="stanza" style="font: 23px 'Sans-serif', sans-serif; text-align: right; background-color: lightblue;">
  52. (It'so unreal, didn't look out below watch the time go right out the window,)
  53. </div>
  54. <div class="stanza" style="font: 25px 'Courier New', monospace; text-align: center; background-color: gray;">
  55. trying to hold on but didn't even know, just watch you go. I keep everything inside and even though I tried it all fell apart.
  56. </div>
  57. <div class="stanza" style="font: 17px Georgia, serif; text-align: left; background-color: orange;">
  58. what it meant to be will eventually be a memory of a time. I tried so hard.
  59. </div>
  60. </div>
  61. </body>
  62. </html>
  63.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement