Skip to content

rodrigonyam/FINISHED

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Camperbot's Blog

Small demo site — static HTML with a simple stylesheet and SVG logo/favicon.

Files

  • index.html — main page (includes header linking to logo.svg).
  • styles.css — external stylesheet (extracted from the page).
  • logo.svg — site logo shown in the header.
  • favicon.svg — SVG favicon linked in the page.

Quick Start

Open the site directly (Windows):

start .\index.html

Or run a minimal local HTTP server (Python 3) and open http://localhost:8000:

python -m http.server 8000

Then open the URL in your browser.

Notes

  • The favicon uses an SVG (favicon.svg). Modern browsers support SVG favicons; if you need an .ico for older browsers, convert the SVG to .ico.
  • To generate a favicon.ico with ImageMagick (Windows):
magick convert favicon.svg -resize 64x64 favicon.ico
  • CSS is extracted into styles.css for easy editing. Move it into a css/ folder if you prefer and update the <link> in index.html.

Next steps (optional)

  • Add an .ico fallback for older browsers.
  • Add a small assets/ folder and place images there.
  • Commit the changes to git (I can create a small commit message if you want).

If you'd like, I can also produce a PNG/ICO favicon, move styles.css into a css/ folder and update the HTML, or create a git commit for these changes.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published