Static landing page for Ecofin, built with plain HTML and CSS.
ecofin-web/
├── en/
│ └── index.html
├── ru/
│ └── index.html
├── index.html
├── robots.txt
├── sitemap.xml
├── style.css
└── assets/
├── ecofin-favicon.png
└── favicon.png
Open index.html directly in a browser, or run a small static server from this folder:
python3 -m http.server 4321Then visit:
http://127.0.0.1:4321
Most page content is in index.html.
The root page is Uzbek, /en/ is English, and /ru/ is Russian.
The site supports Uzbek, English, and Russian text using repeated elements with:
class="i18n" data-lang="uz"
class="i18n" data-lang="en"
class="i18n" data-lang="ru"When changing copy, update all three language versions and keep localized
metadata, canonical links, and sitemap.xml in sync.
All visual styles are in style.css, including:
- Layout and responsive breakpoints
- Navigation
- Hero section
- Cards
- Sponsors and about sections
- Footer
No build step is required.