Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 56 additions & 0 deletions utumishi/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
# Utumishi Archive

Utumishi Archive is a responsive static webpage for presenting a journals, books, and learning-materials archive. It is built with plain HTML and CSS, so it does not require a framework, package manager, database, or build step.

## Repository

This project is intended to live in:

```text
https://github.com/t-mwau/DecodeLabs-Internship
```

Recommended path inside the repository:

```text
utumishi/
├── index.html
└── css/
└── styles.css
```

## Features

- Responsive landing page for archive and storage services
- Mobile-friendly navigation using a CSS checkbox toggle
- Sections for collections, archive workflow, services, and contact details
- CSS media queries for desktop, tablet, and mobile layouts
- No JavaScript and no external runtime dependencies

## Create the files from a terminal

```bash
git clone https://github.com/t-mwau/DecodeLabs-Internship.git
cd DecodeLabs-Internship
mkdir -p utumishi/css
touch utumishi/index.html utumishi/css/styles.css utumishi/README.md
```

## Run locally

From the repository root, run:

```bash
python3 -m http.server 8000 --directory utumishi
```

Open the site at:

```text
http://localhost:8000
```

## Notes

- The page uses one remote Unsplash image as the hero background.
- If you need the site to work fully offline, replace that remote image with a local image file and update the background URL in `css/styles.css`.
Loading