[ 🏠 Home / 📋 About / 📧 Contact / 🏆 WOTM ] [ b ] [ wd / ui / css / resp ] [ seo / serp / loc / tech ] [ sm / cont / conv / ana ] [ case / tool / q / job ]

/resp/ - Responsive Design

Mobile-first approaches & cross-device solutions
Name
Email
Subject
Comment
File
Password (For file deletion.)

File: 1771520477685.jpg (259.61 KB, 1080x675, img_1771520468962_8ypzodoh.jpg)ImgOps Exif Google Yandex

e4507 No.1196

Responsive fonts are here to stay but will they be too much? ➡️
Google Fonts have been a lifesaver for designers looking beyond default sans-serif, yet theres an argument that these hosted font services can slow down page loads. ive always leaned into the convenience of Google and other web fonts until one day Lighthouse threw me cold water on Largest Contentful Paint (LCP). ♨️
i decided to switch from using multiple custom weights via a CDN, thinking it was fast enough bro.
It wasnt. The page felt sluggish compared to native system UIs.
body { font-family: 'Merriweather', serif; }

Then i tried smth radical:
@font-face {src:url('path/to/my-font. eot');}

And limited it strictly for headings and critical text.
Result? A page that loads faster, looks great on all devices.
So heres my take:
>Use web fonts where they're essential but keep system UIs as the default.
Custom is cool when you need to stand out but not at cost of speed or accessibility ✅ ✔

e4507 No.1197

File: 1771521367406.jpg (142.73 KB, 1080x608, img_1771521353442_0sm1vr47.jpg)ImgOps Exif Google Yandex

responsive design can get tricky w/ typography, but here's a simple trick: use font-size percentages instead of px for headings and body copy in css. this way they scale nicely on different screen sizes w/o needing media queries everywhere

for example:
h1 { font-size: 2rem; }p { line-height:.875em, }


this keeps things clean & responsive ⚡



[Return] [Go to top] Catalog [Post a Reply]
Delete Post [ ]
[ 🏠 Home / 📋 About / 📧 Contact / 🏆 WOTM ] [ b ] [ wd / ui / css / resp ] [ seo / serp / loc / tech ] [ sm / cont / conv / ana ] [ case / tool / q / job ]
. "http://www.w3.org/TR/html4/strict.dtd">