Created
May 7, 2020 01:00
-
-
Save stupid-genius/c7650149f6373461f29cbab786dfc1df to your computer and use it in GitHub Desktop.
An old poem I wrote
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE HTML> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Walking</title> | |
| <link href="https://fonts.googleapis.com/css2?family=Calligraffitti&display=swap" rel="stylesheet"> | |
| <style> | |
| body{ | |
| background-color: #EBF5FF; | |
| text-align: center; | |
| font-family: 'Calligraffitti', cursive; | |
| } | |
| h1{ | |
| color: #4D7EAD; | |
| } | |
| #byline{ | |
| font: small monospace; | |
| color: blue; | |
| } | |
| .poem{ | |
| width: 270px; | |
| margin-left: auto; | |
| margin-right: auto; | |
| } | |
| .poem > p{ | |
| text-align: justify; | |
| line-height: 2em; | |
| color: #326495; | |
| } | |
| p:first-letter{ | |
| font-size: xx-large; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <h1>Walking</h1> | |
| <div id="byline">by Allen Ng</div> | |
| <img src="images/hr_quill.gif" alt=""/> | |
| <div class="poem"> | |
| <p>She walks through my world.<br/> | |
| I see her introspecting the space around her<br/> | |
| And yet she sees none of it.</p> | |
| <p>Walking down the street<br/> | |
| I see my dreams<br/> | |
| Walking past my eyes.</p> | |
| <p>I see nothing through the night.<br/> | |
| The stars come down<br/> | |
| And fly around to keep me lonely.</p> | |
| <p>Walking down the street<br/> | |
| I watch my dreams<br/> | |
| Tearing out my eyes.</p> | |
| <p>Summer is in bloom, the flowers are dying.<br/> | |
| As I shake from the shiver<br/> | |
| And still think that I'm warm.</p> | |
| <p>Walking down the street<br/> | |
| I want the dreams<br/> | |
| That aren't really mine.</p> | |
| <p>Maybe one day I'll just keep walking.</p> | |
| </div> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment