A simple, elegant website to display and share poems.
This repository contains a static website for showcasing poetry. The site features a clean, responsive design with a focus on readability and aesthetics.
- Clean, minimalist design
- Responsive layout (works on desktop, tablet, and mobile)
- Easy to read typography
- Sample poems included
- Ready for GitHub Pages deployment
To view the website locally:
- Clone this repository
- Open
index.htmlin your web browser, or - Run a local web server:
Then navigate to
python3 -m http.server 8080
http://localhost:8080
To deploy this site using GitHub Pages:
- Go to your repository settings on GitHub
- Navigate to "Pages" in the left sidebar
- Under "Source", select the branch you want to deploy (e.g.,
main) - Click "Save"
- Your site will be available at
https://[username].github.io/poems/
To add your own poems, edit the index.html file:
- Find the
<article class="poem">sections - Replace the sample poems with your own content
- Follow the same HTML structure:
<article class="poem"> <h3>Your Poem Title</h3> <div class="poem-content"> <p>First line of your poem</p> <p>Second line of your poem</p> <!-- Add more lines as needed --> </div> <p class="poem-meta">— Your Name</p> </article>
You can customize the appearance by editing style.css:
- Colors: Change the
background-colorandcolorproperties - Fonts: Modify the
font-familyvalues - Layout: Adjust padding, margins, and max-width values
This project is licensed under the Apache License 2.0 - see the LICENSE file for details.