My resume reimagined as a concept I spent most of my time in - terminal :)
I'm not a CSS expert, so credit goes to Claude Code for a lot of the heavy lifting.
I envisioned a digital resume which is:
- Reminiscent of the command line
- Is contextually aware on desktop, mobile, and print
- Has a tiny footprint — pure HTML and CSS
- No JavaScript
Visit: https://parasdsingh.github.io/
To print or save as PDF, use the print button or browser's print function.
- Terminal command aesthetics (
whoami,ls -l, etc.) - Dark/light theme toggle
- Mobile-responsive layout
- A4-optimized printing with color detection
- Pure CSS navigation using
:targetselectors
Static site deployable to any web server. Main files:
index.html- CV content and structurestyles.css- All styling and responsive behavior
The codebase is validated using standard tools:
# HTML validation
npx htmlhint index.html
# Code formatting
npx prettier --check index.html styles.css
npx prettier --write index.html styles.css
# CSS validation
npx stylelint styles.cssBuilt with vanilla web technologies for maximum compatibility and performance.