Small demo site — static HTML with a simple stylesheet and SVG logo/favicon.
index.html— main page (includes header linking tologo.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.
Open the site directly (Windows):
start .\index.htmlOr run a minimal local HTTP server (Python 3) and open http://localhost:8000:
python -m http.server 8000Then open the URL in your browser.
- The favicon uses an SVG (
favicon.svg). Modern browsers support SVG favicons; if you need an.icofor older browsers, convert the SVG to.ico. - To generate a
favicon.icowith ImageMagick (Windows):
magick convert favicon.svg -resize 64x64 favicon.ico- CSS is extracted into
styles.cssfor easy editing. Move it into acss/folder if you prefer and update the<link>inindex.html.
- Add an
.icofallback 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.