Skip to content

File Structure

Retro Jack edited this page Mar 26, 2026 · 63 revisions

File Structure

www.lazygamereviews.com/
│
├── index.html                  # Splash page — redirects to prompt/ after 2s
├── favicon.ico                 # Site favicon
│
└── prompt/
    ├── index.html              # DOS simulator (all logic lives here)
    ├── favicon.ico             # Prompt page favicon
    ├── animated_favicon1.gif   # Animated favicon
    ├── classList.min.js        # IE classList polyfill
    ├── ggl.js                  # Google IP detection script
    └── img/
        └── f12.7.png           # Bitmap font sprite sheet (base/white)

Key Files

File Purpose
prompt/index.html The entire DOS simulator — HTML, CSS, and JS in one file
prompt/img/f12.7.png 192×192px sprite sheet, 16×16 grid of 12×12px characters
classList.min.js Polyfill enabling classList API in IE9 and below
ggl.js Fetches client IP to pass to Google (avoids abuse flags)

Clone this wiki locally