Skip to content

midhunmanesh01-code/webpage1

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Web1 — Multi‑Page Front‑End Demo

A small, static multi-page website demonstrating basic front-end patterns: navigation, layout, and simple JavaScript utilities (QR code and password generators).

Live demo: https://midhunmanesh01-code.github.io/webpage1/

Quick preview: Open index.html in a browser to start at the login page.


What this project shows

  • Multi-page structure: separate HTML pages for Home, About, Contact, QR code, and Password generator.
  • Responsive-first CSS: modular styles under the css/ folder.
  • Small JS utilities: generators implemented in js/ (UI + basic logic).

Files of interest


Local preview / development

  • Open the site directly: double-click index.html or open it from your browser.
  • Or serve with a lightweight HTTP server (recommended for relative paths):
# From project root
python -m http.server 8000
# then open http://localhost:8000/

Edit → Test

  • Modify HTML under html/ or styles under css/, then refresh the browser.
  • JavaScript lives in js/; changes load on refresh.

Project structure

Web1/
├─ index.html
├─ README.md
├─ requirement.txt
├─ style.css
├─ css/
│  ├─ about.css
│  ├─ contact.css
│  ├─ home.css
│  ├─ password.css
│  └─ qrcode.css
├─ html/
│  ├─ about.html
│  ├─ contact.html
│  ├─ home.html
│  ├─ password.html
│  └─ qrcode.html
└─ js/
   ├─ password.js
   └─ qrcode.js

Contributing / Next steps

  • Add form validation and accessibility improvements.
  • Make the QR generator produce downloadable images (client-side).
  • Improve password options (length, character sets) and copy-to-clipboard UX.
  • Add automated linting / formatting for CSS/JS.

Author: Midhun Manesh


Contact

About

My First Webpage!

Resources

Stars

3 stars

Watchers

0 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors