MyKK.us

Browser dashboard + Chrome extension — start page done right

MyKK.us

A minimalist, responsive web page for MyKK.us that displays a Krispy Kreme-themed image, optimized for different viewport sizes, and redirects to the official Krispy Kreme website upon clicking. The image is centered both vertically and horizontally, ensuring it is never cropped, with different image resolutions served based on the device’s screen size.

Features

Project Structure

mykk.us/
├── index.html         # Main HTML file
├── images/            # Directory for image assets
   ├── mykk-800x1063.jpg
   ├── mykk-1653-1136.jpg
   ├── mykk-1680x1050.jpg
   ├── mykk-1920x1080.jpg
   ├── mykk-2560x1440.jpeg
   ├── mykk-3508x2480.jpg
   └── mykk-3648x2736.jpeg
└── README.md          # This file

Setup

  1. Clone the Repository:

    git clone https://github.com/MichalAFerber/mykk.us.git
    cd mykk.us
  2. Add Image Assets:

    • Place the required images (mykk-*.jpg/jpeg) in the images/ directory.
    • Update the <source> and <img> srcset/src attributes in index.html with the correct paths or URLs to your images (e.g., https://mykk.us/images/mykk-800x1063.jpg).
  3. Host the Website:

    • Local Development: Use a local server like live-server or Python’s HTTP server:

      python -m http.server 8000

      Then open http://localhost:8000 in your browser.

    • Deploy: Upload the files to a web server or hosting service (e.g., GitHub Pages, Netlify, or your own server). Ensure the images/ directory is accessible.

  4. Test Responsiveness:

    • Use browser developer tools to simulate different screen sizes.
    • Verify that the correct image loads based on viewport width and that it is centered without cropping.

Usage

Customization

Notes

License

This project is for personal or demonstration purposes. Ensure you have permission to use and distribute the Krispy Kreme-themed images.