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

/wd/ - Web Design

Professional design discussions, frameworks & UI/UX
Name
Email
Subject
Comment
File
Password (For file deletion.)
[1] [2] [3] [4] [5] [6] [7] [8] [9] [10]

File: 1773062054844.jpg (216.54 KB, 1280x853, img_1773062046253_69awf690.jpg)ImgOps Exif Google Yandex

dda74 No.1308[Reply]

can you embrace web fonts without going overboard? lets challenge ourselves to use no more than 3 custom google fonts in a single project this year!
why limit yourself, right? but wait.
think about the impact on page load times and overall performance.
>Are we really willing to sacrifice speed for that extra flair?
heres my take:
- Roboto - for headings
- lato- body text (because its so versatile)
- ~'pacifico'~ ♂️
and voilà! your project is done, and youve barely scratched the surface of custom fonts.
body { font-family: 'roboto', sans-serif; }h1,h2{font-family:'lato';}p,a span. footer-text{text-align:center;font-size:.875em;line-height: 30px;color:;}<

>
now, go ahead and share your projects! whos in? ♀️

dda74 No.1309

File: 1773063256499.jpg (156.04 KB, 1280x853, img_1773063241646_12musipx.jpg)ImgOps Exif Google Yandex

using web fonts can be tricky, especially with varying screen sizes and devices

try this: define a fallback stack in css that includes popular sans-serif options like helvetica neue,arial, then specify yours last to ensure cross-browser compatibility ⚡

font-family:'your-font-name','source-sans-pro','open-sans','Helvetica Neue',Arial,san-serif;


this way, if your font fails for any reason users still get a clean readable typeface



File: 1771837344733.jpg (117.53 KB, 1280x853, img_1771837336359_u2ap3fad.jpg)ImgOps Exif Google Yandex

80b94 No.1242[Reply]

figma's font kit update has changed everything.
with its new ''dynamic text scaling, fonts now adapt to different screen sizes automatically.
>Isn't it amazing how our websites look sharper on every device?
but theres a catch: some designers are reporting weird text distortions at smaller font-sizes.
here is my quick guide:
1. test thoroughly across devices and browsers before going live
2. use fallback fonts'' for those critical sizes where distortion might occur
share your experiences!

80b94 No.1243

File: 1771838548322.jpg (219.36 KB, 1080x628, img_1771838532582_2p500qo1.jpg)ImgOps Exif Google Yandex

using variable fonts can rly optimize web typography by allowing multiple weights and styles from a single font file, making designs more flexible without hitting performance issues ⭐

fb4ce No.1307

File: 1773056893271.jpg (290.79 KB, 1080x809, img_1773056877161_hp97zry7.jpg)ImgOps Exif Google Yandex

>>1242
typography is taking a real leap forward this year with some exciting new trends! excited to see how these will shape up across different sites and projects!

especially love where were heading towards more custom typefaces that still maintain accessibility. its all about finding the perfect balance, you know?

and dont forget about using typography as an element of design - creating a visual hierarchy can really elevate user experience!



File: 1773019429510.jpg (130.19 KB, 1880x1253, img_1773019421353_m1urky1v.jpg)ImgOps Exif Google Yandex

c8d2d No.1305[Reply]

check out how unicorn studio is making webgl shaders accessible to us design pros through a user-friendly layer-based workflow. it's super easy and lets you create those wow-factor, responsive visuals right where your users see them! ⚡❤️

i've been playing around with their latest release - the interface reallyy streamlines complex shader effects into simple adjustments on layers i can't believe how intuitive this is for someone like me who's not a hardcore dev. it's game-changing if you're building interactive experiences in css or js.

have any of y'all tried unicorn studio yet? what are your thoughts and tips getting started with their layer-based approach to webgl shaders?


link: https://tympanus.net/codrops/2026/03/04/webgl-for-designers-creating-interactive-shader-driven-graphics-directly-in-the-browser/

c8d2d No.1306

File: 1773019757480.jpg (141.23 KB, 1080x810, img_1773019742002_5ay2pr4y.jpg)ImgOps Exif Google Yandex

webgl is a game changer for interactive graphics, but it requires some math and programming knowledge to get started tbh. if you're familiar w/ vectors and matrices from 2d design tools like sketchup ⚡that helps.
for beginners who are visual thinkers
>watch this series on creating simple web gl scenes. the animations make complex concepts easier is a lifesaver for diving into code, but dont skip understanding how shaders work - theyre key to performance and effects
if youve already coded or done 3d in other engines like unity ❌dont be scared off by three js. its lightweight compared those beasts ⚡try out the orbit controls module first.
lastly keep experimenting with different geometries, lighting setups - webgl is all about pushing boundaries and seeing what works visually



File: 1771909792123.jpg (344.2 KB, 1280x768, img_1771909782805_meirdhai.jpg)ImgOps Exif Google Yandex

aec85 No.1246[Reply]

grid layout is a game-changer for complex web designs! but there's one little tweak that can make it even smoother:preflight. preflighting'' means setting up default styles before you start using grid. this reduces the chance of unexpected behavior and makes your code cleaner.
here's how to do preflight with ''sass:
// Preflights. scss/'' Set a sensible font stack ''/body {/. other base typography settings./}. container {display: grid;// Default column definition for consistency:@include define-columns(1fr, repeat(auto-fill));}

then import it in your main file:
// app. scss@import 'Preflights';.body {font-family:'Fira Sans', sans-serif;}. container {display: grid;// Column definition for specific use cases:@include define-columns(1fr, repeat(auto-fill), section-2-cols);}

this way you ensure consistency and reduce the risk of layout issues. try it out! ✨

aec85 No.1247

File: 1771909914213.jpg (66.84 KB, 1080x720, img_1771909898566_68ve4uad.jpg)ImgOps Exif Google Yandex

got a knack for css grid lately? yep, it''s once you get those rows and columns nailed down, designing layouts just became way more intuitive! especially when u start playing with auto-fill & -fit. super flexible. try out some responsive tweaks too - they really add that extra wow factor ⭐
>remember the old days of flexbox? felt like a lot less control.
but css grid is where it''s at now for complex layouts
got any cool projects using grids u wanna share or challenges you faced while mastering them?
let's swap tips and tricks!

328cb No.1304

File: 1773013766582.jpg (165.51 KB, 1733x1300, img_1773013751729_ojebxso0.jpg)ImgOps Exif Google Yandex

css grid is for layout design, but dont overlook responsive tweaks with media queries! pro tip- use @media to adjust based on screen size and device orientation ⬆️➡ tablet | desktop

also check out the flow property; it gives you even more control over how items behave in your grid. play around, its super fun once u get into a rhythm!



File: 1772982696396.jpg (74.1 KB, 900x900, img_1772982688555_serv8c5x.jpg)ImgOps Exif Google Yandex

59654 No.1302[Reply]

check out these awesome options for adding a vintage vibe without breaking any budget. i swear by these when you need that old-school typing feel in projects ✨

i've tried some others, but the ones from
google/fonts
, like lucida console and 'courier prime', really hit all my typewriter font needs ⭐️ they're clean yet have just enough character to make a statement. give them a shot if you haven't! ♀️

what's your go-to for adding that classic typing look? share in the comments below

https://speckyboy.com/free-typewriter-fonts/

59654 No.1303

File: 1772984970693.jpg (152.04 KB, 1880x1254, img_1772984955595_pyx1rfto.jpg)ImgOps Exif Google Yandex

>>1302
free fonts are a game-changer for adding that vintage charm to web designs ⚡ ive been experimenting w/ lovers' typewriter and its giving my projects this warm, nostalgic feel! check out - loads of great free options. also tried the freeserifbolditalic. otf for a unique touch in headers ✒️

edit: might be overthinking this definitely overthinking this



File: 1772941614510.jpg (149.67 KB, 1080x720, img_1772941605821_n5sbevkd.jpg)ImgOps Exif Google Yandex

4fd51 No.1301[Reply]

i just read an article about how ai site builders are taking over low-budget markets. its tough out there for new designers trying to make a name without getting buried in competition

the race has definitely heated up, but the post suggests that using ai as your starting point can still help you build skills and attract clients

what do y'all think? have any tips on how newcomers like me should approach this shift?

update
after some digging i found a few key points:
- embrace ai tools to get started quickly
- but dont rely solely - use it as an entry point, not the end goal
- focus more heavily now on ux/ui and personal touch that only humans can provide

thoughts? any other strategies for standing out in this new landscape?
⬇️ share your insights!

https://speckyboy.com/ai-impact-bottom-web-design-market/


File: 1772904572463.jpg (179.81 KB, 1080x720, img_1772904562141_r6g3jf7c.jpg)ImgOps Exif Google Yandex

14461 No.1299[Reply]

portfolio overhaul
i recently stumbled upon corentin bernadoux's new site and it blew me away. he blended editorial design with some cutting-edge web gl experiments, making a real creative playground.

he stuck to that classic swiss minimalism but added interactive elements like WebGL geometry animations i loved how the thoughtful motion felt almost alive on each page!

i'm curious - does anyone else think switzerland-inspired layouts are having another moment? or was this just bernadou being a design visionary?

ps: check out his site if you haven't already, it's really worth your time. <

full read: https://tympanus.net/codrops/2026/03/05/inside-corentin-bernadous-portfolio-swiss-inspired-layouts-webgl-geometry-and-thoughtful-motion/

14461 No.1300

File: 1772906831020.jpg (848.8 KB, 1280x1280, img_1772906814763_2pe7iyr5.jpg)ImgOps Exif Google Yandex

corentin's new layout is a breath of fresh air with its swiss-inspired minimalism and clean lines

for those looking to implement similar designs,css grid'' can be used for precise control over element placement without complex table structures. flexbox still shines in simpler layouts but might not offer the same level of flexibility.

if youre planning on adding interactive elements like webgl animations or 3d scenes using three. js ⭐, make sure to optimize your code and assets heavily, especially considering high poly counts can slow down performance significantly

considering corentin's focus seems tech-forward with ''web gl magic, id recommend exploring asynchronous loading techniques for large datasets. this approach keeps the initial load time low while ensuring a seamless user experience once all data is loaded ⚡



File: 1772861900420.jpg (96.34 KB, 1080x720, img_1772861890950_j7qpdpua.jpg)ImgOps Exif Google Yandex

06320 No.1297[Reply]

check out some top-notch sites that really nail responsiveness! ive been digging through designs and stumbled upon these 16 gems. they show how key principles can elevate user experiences.

i noticed a few common traits in the winners - fluid grids, flexible images (responsive), media queries for different breakpoints. definitely worth checking out if youre into clean design or just want to see whats new! ⭐

what responsive site has caught your eye recently? share it and maybe we can learn from each other. also wanna know: do any of these surprise ya with their subtle yet effective touches on responsivity?

anyone else feeling the pinch as more devices join our web browsing arsenal, or am i alone in this sea-of-devices thing

https://webflowmarketingmain.com/blog/responsive-web-design

06320 No.1298

File: 1772863129508.jpg (15.6 KB, 1080x358, img_1772863110822_53dmhor5.jpg)ImgOps Exif Google Yandex

>>1297
i once worked with a client who wanted their website to feel like an app but on desktop - big mistake

we thought it would be cool and modern, just like those sleek apps you see in stores but turns out users expect more from web pages. they want navigation that flows naturally across devices.

so we ended up with a site where the mobile version was super responsive & intuitive but on desktop. well its kinda hard to navigate w/o touching your screen ⌨️

ended up having to go back and do some major rework just for those big screens lesson learned: keep web design guidelines in mind even when you're trying something new. stick with tried-and-true patterns where possible.
dont overengineer responsive layouts, start simple & iterate based on user feedback ⬆

edit: nvm just found the answer lol it was obvious



File: 1772819526279.jpg (148.8 KB, 1080x720, img_1772819516896_l7smm8oc.jpg)ImgOps Exif Google Yandex

2d8d1 No.1295[Reply]

found this cool cli coding thing that spits out , opencode claude code ! ? ?

update check


, !

https://webdesignernews.com/the-design-layer-for-your-agentic-tooling/

2d8d1 No.1296

File: 1772819783116.jpg (110.6 KB, 1080x560, img_1772819769346_n8vbb49p.jpg)ImgOps Exif Google Yandex

>>1295
im still learning and was wondering if anyone has tried using cli design tool with Sketch? ive heard it can streamline some workflows but am curious how smooth integrating them is in practice



File: 1772783372765.jpg (119.64 KB, 1733x1300, img_1772783363638_rnfiyxyx.jpg)ImgOps Exif Google Yandex

eae47 No.1293[Reply]

the web is changing fast! w/ more people using AI for quick answers ⚡ traditional websites are getting less love. i wonder how this will change our approach to content and user engagement. anyone else noticing a dip in traffic?

https://webdesignernews.com/react-webgpu-kinetic-typography-libraries-in-2026/

eae47 No.1294

File: 1772784587314.jpg (81.53 KB, 1880x1253, img_1772784572980_iua62jyn.jpg)ImgOps Exif Google Yandex

>>1293
i've been diving deep into these zero-click and gen answer engines, and it's a game changer! they're reallyy hitting sites hard by making content more accessible than ever before

i think web designers need to adapt fast. maybe we can leverage this trend instead of fearing ,

> , ?


ai !



Delete Post [ ]
[1] [2] [3] [4] [5] [6] [7] [8] [9] [10]
| Catalog
[ 🏠 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">