Tiny static demo site that hosts links to external resources, such as iForms. As an initial implementation, it contains one link, but the intention is to create a series of "Cards" that link to different business scenarios.
- Just navigate to https://sacha00z.github.io/fakewebsite/
- Requirements:
python3(for a local preview), a browser, and Git. - Serve locally (from the repo root):
python3 -m http.server 8000
# open http://localhost:8000 in your browserThe site is purely static: edit index.html, style.css, and images in the images/ folder.
- Open the project folder in VS Code:
File → Open Folder...and choose this repo. - Recommended extensions: Prettier (formatting), EditorConfig, and Live Server (optional quick preview).
- Use the built-in Terminal (
View → Terminal) to run the quick-start server above. - Git in VS Code: use the Source Control pane to stage, commit, and push changes.
Helpful VS Code workflow:
- Create a feature branch:
git checkout -b feature/short-description - Make small, focused commits.
- Push:
git push -u origin feature/short-description - Open a Pull Request on GitHub and request a review.
- Branch naming:
feature/*,fix/*, orchore/*. - Keep changes small and include a short descriptive commit message.
- Use relative image paths (place images into the
images/folder). - When adding new markup or styles, try to keep styles scoped to
style.cssand follow the existing simple patterns.
index.html— main pagestyle.css— site stylesimages/— static images used by the pageLICENSE— project license
- This repo intentionally has no build system. If you want to introduce one (tooling, bundlers, or generators for image galleries), open an issue first so we can agree on scope.