Go to file
Justin 1c90c97ed9 feat: add initial K5BSS ham radio station dashboard and logbook interface 2026-04-13 23:52:10 -05:00
css feat: improve responsive design with tablet and small-screen breakpoints 2026-04-13 17:09:46 -05:00
Justin_Frasier_Resume.pdf feat: add resume download link and update professional experience and skills sections 2026-04-13 22:37:43 -05:00
README.md feat: improve responsive design with tablet and small-screen breakpoints 2026-04-13 17:09:46 -05:00
favicon-32x32.png feat: implement responsive site styling and add web design tag to index 2026-04-13 15:59:39 -05:00
favicon-64x64.png feat: implement responsive site styling and add web design tag to index 2026-04-13 15:59:39 -05:00
favicon-256x256.png feat: implement responsive site styling and add web design tag to index 2026-04-13 15:59:39 -05:00
favicon.ico feat: implement responsive site styling and add web design tag to index 2026-04-13 15:59:39 -05:00
index.html feat: add resume download link and update professional experience and skills sections 2026-04-13 22:37:43 -05:00
k5bss.html feat: add initial K5BSS ham radio station dashboard and logbook interface 2026-04-13 23:52:10 -05:00

README.md

k5bss.com

Personal portfolio and resume site for Justin Frasier — IT Support Analyst and amateur radio operator (K5BSS, General Class).

Live at: k5bss.com


Overview

A static, single-page resume site with a dark terminal aesthetic. No frameworks or build tools — just HTML and CSS.

Structure

k5bss.com/
├── index.html          # Main page (all content)
├── css/
│   └── style.css       # All styles
├── favicon.ico
├── favicon-32x32.png
├── favicon-64x64.png
└── favicon-256x256.png

Sections

  • About — summary, tags, and certifications at a glance
  • Experience — work history (Margaritaville, Boomtown, xententLABS)
  • Technical Skills — languages, OS, hardware, tools, networking, IT support, security
  • Education — BPCC A.A.S. Cyber Technology, Northwood High School
  • Certifications — CompTIA A+, PCPro, Udemy courses, amateur radio, locomotive
  • Contact — email, phone, address, GitHub, LinkedIn, self-hosted Git

Tech

  • Plain HTML5 / CSS3 — no JavaScript frameworks or build step
  • Fonts: IBM Plex Mono and IBM Plex Sans via Google Fonts
  • Sticky sidebar with scroll-spy nav via IntersectionObserver
  • Fully responsive across three breakpoints (see below)

Responsive Design

The layout adapts across three breakpoints defined in css/style.css:

Breakpoint Behavior
≤1024px (tablet) Sidebar narrows from 280px to 230px; main content padding reduced
≤768px (mobile) Sidebar unsticks and stacks above content; nav links reflow into a horizontal wrapping row; contact grid collapses to one column
≤480px (small phone) Tighter padding and font sizes; skills grid columns shrink to minmax(140px, 1fr)

All other components — tags, socials, and the skills grid — use flex-wrap or auto-fill and reflow fluidly without breakpoints.

Deployment

Static files — drop the repo contents onto any web server or host (Nginx, Apache, Caddy, GitHub Pages, etc.). No build step required.