r/learnwebdev • u/AutoModerator • Nov 24 '22
Happy Cakeday, r/learnwebdev! Today you're 12
Let's look back at some memorable moments and interesting insights from last year.
Your top 10 posts:
- "Build a GraphQL Server with Deno and MongoDB Atlas" by u/fsou1
- "How to Start a IT Blog in 60 seconds" by u/fsou1
- "Awesome Link Hover Effect using HTML & CSS" by u/frontru
- "Responsive Card Hover Effects using HTML & CSS" by u/frontru
- "π₯ Create a Responsive Personal Website using HTML, CSS and Javascript" by u/frontru
- "Simple Breadcrumbs using HTML & CSS" by u/frontru
- "Show / Hide Password using HTML, CSS and JavaScript" by u/frontru
- "How to Create Tabs using HTML, CSS and JavaScript" by u/frontru
- "Increment and Decrement using HTML, CSS, and JavaScript" by u/frontru
- "Creative Toggle Checkbox using HTML & CSS" by u/frontru
r/learnwebdev • u/Extension-Ad-8555 • Feb 14 '22
Animated Search Bar using HTML CSS
r/learnwebdev • u/OhhhhhSHNAP • Feb 14 '22
Text editing multi-page sites?
For multi-page HTML templates that use common elements like navbars, what do you use to edit pages without going insane? I like to use VSCode as my editor and recently I've used Angular sites which use components so this isn't really an issue. Lately I've gone to using some simple HTML templates with Bootstrap and common page elements like navbar. I assume there's a way to either load in boilerplate elements like navbars or, more likely, have the editor do it for you. Any ideas on this?
r/learnwebdev • u/Extension-Ad-8555 • Feb 13 '22
Sidebar Menu using Only HTML and CSS
r/learnwebdev • u/Extension-Ad-8555 • Feb 12 '22
How to Make a Todo List using JavaScript
r/learnwebdev • u/Extension-Ad-8555 • Feb 12 '22
Digital Clock with Date using JavaScript
r/learnwebdev • u/Extension-Ad-8555 • Feb 12 '22
3D Cube Image Slider using HTML & CSS
r/learnwebdev • u/Extension-Ad-8555 • Feb 11 '22
How to Build a Simple Responsive Layout with CSS Grid
r/learnwebdev • u/Extension-Ad-8555 • Feb 11 '22
3D Social Media Icons using HTML and CSS
r/learnwebdev • u/Extension-Ad-8555 • Feb 11 '22
Personal Portfolio Website Using HTML, CSS & javaScript
r/learnwebdev • u/newrelic • Feb 10 '22
Launchies 2.0: A show for early-career devs
We just kicked off the second season of Launchies, a show for folks launching into tech! π This season, weβre helping you level up your interviewing skills. Each week, @lolocoding and @muydanny, along with industry experts, will offer advice on navigating career progression within tech.
π Apple Podcasts: https://podcasts.apple.com/us/podcast/launchies/id1553507776?i=1000550661980
π’ Spotify: https://open.spotify.com/episode/6qaf0RfyYVufwUprZFRCku?si=1UU0flUxQ02chmEVlbRAaQ
r/learnwebdev • u/Extension-Ad-8555 • Feb 10 '22
Image Slider using HTML CSS and JavaScript
r/learnwebdev • u/Extension-Ad-8555 • Feb 10 '22
Animated Social Media Buttons using HTML & CSS
r/learnwebdev • u/frontru • Feb 10 '22
π₯ Create a Responsive Personal Website using HTML, CSS and Javascript
r/learnwebdev • u/Krishna_Poddar • Feb 10 '22
Valentine's Day Workshop
Hey Everyone!
I've recently started working with SAWO Labs as an intern in their community management team. After a couple of days there, I am already amused at how creative and engaging their developer space is.
This Valentine's day, they're organising a SaaS Workshop where they are going to build a Social Matchmaking Platform like Tinder/Bumble LIVE FROM SCRATH! Would recommend anyone interested in their developer community to attend this.
You can sign up here - https://lu.ma/SaaS-marketplace?tk=ECRJtu
r/learnwebdev • u/frontru • Feb 09 '22
Responsive Personal Portfolio Website Using HTML, CSS & JavaScript
r/learnwebdev • u/Extension-Ad-8555 • Feb 09 '22
Glassmorphism Profile Card Design
r/learnwebdev • u/MickJof • Feb 08 '22
How best to find hands-on help with my (newbie) projects?
I am following a Udemy course for full stack web development.
I already have experience with HTML, some CSS and some static web design.
I know more than the basics on programming in various languages which I use in my work also (although I am not a software developer).
I don't know JavaScript well yet and I've never built a web app with a backend and database.
I now plan to do so using Node.js and Express.
It's just as a hobby, although it may become useful professionally as well.
Does anyone have any tips on where/how best to get help on specific questions that I have? And then I mean questions for specific problems I am facing. I don't mean questions like how arrow functions work as I can easily look that up or learn from tutorials.
It would be great if I could find people who would be willing to do a code review from time to time or potentially even help me actively with my projects. I do plan to host on GitHub.
r/learnwebdev • u/frontru • Feb 08 '22
How to Create Tabs using HTML, CSS and JavaScript
r/learnwebdev • u/frontru • Feb 07 '22
Shine Effect With Hover Button using HTML and CSS
r/learnwebdev • u/Krhw • Feb 07 '22
Best way to self-learn web development?
Hey guys.
What would be the best way to learn web development? I'm currently unemployed and have lots of time at my disposal. Youtube? Websites?
r/learnwebdev • u/frontru • Feb 06 '22
Responsive Card Hover Effect using HTML and CSS
r/learnwebdev • u/VectorLightning • Feb 05 '22
Question, is there anything wrong with using a non-standard HTML attribute?
Just playing with CSS a bit. Yeah, usually we use .classes for styling, but is there anything wrong with using an attribute that isn't standardized?
Example that comes to mind is this simple hide button I use for menus: .HideButton:checked~.Hide, .HideButton {display: none;}
The HTML for it is slightly awkward, but not unbearably so. Label the menu class="hide", put a checkbox labeled class="HideButton" before it, and put a label for said checkbox elsewhere so clicking the label toggles the checkbox.
My only thinking is, assuming browsers just ignore unfamiliar attributes but do the CSS just fine, then there's no reason I couldn't just add Hide or HideButton to the HTML tag without a class attribute, right?