Web Development
135K subscribers
706 photos
74 videos
563 files
145 links
Learn to code and become a Web Developer with HTML, CSS, JavaScript, React, Node.js

πŸ’³ Paid ads: https://telega.io/c/Webdev_Trainings
Download Telegram
πŸ”° Accent color in CSS

This CSS property allows you to customize the highlight color of form controls while preserving their native styling, accessibility, and interactivity.
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ”₯45❀20πŸ‘18
πŸ’» Top Pens of 2024 on CodePen

Plenty of superb inspiration, demos, and neat tricks on show here. Whether that’s a neat parallax effect, a retro VHS look achieved with CSS, a rad web component that adds particles to your pointer, or this 3D image carousel. Lots of cool stuff to dig into.


πŸ”— Link to the top
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ‘21❀9
πŸ”… HTML and CSS: Creating Navigation Bars

🌐 Author: Jen Kramer
πŸ”° Level: Intermediate

⏰ Duration: 2h 16m

πŸŒ€ Discover how to build and style responsive, accessible navbars using HTML and CSS techniques that work in any web context.


πŸ“— Topics: Cascading Style Sheets, HTML, User Interface Design

πŸ“€ Join Webdev Training for more courses
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ‘30❀13
HTML and CSS - Creating Navigation Bars.zip
324 MB
πŸ“±Webdev Training
πŸ“±HTML and CSS: Creating Navigation Bars
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ‘25πŸ”₯7❀3
Ex_Files_HTML_and_CSS_Creating_Nav_Bars.zip
34.1 KB
πŸ“¦ Exercise Files
πŸ‘13πŸ”₯13❀6
πŸ”° CSS: How to Truncate text

Old but useful.
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ‘63❀17
πŸ”… HTML for Programmers

🌐 Author: Emma Bostian
πŸ”° Level: Intermediate

⏰ Duration: 1h 8m

πŸŒ€ Get an overview of important HTML elements like form elements, text elements, tables, and media content, to enhance your skills as a web developer.


πŸ“— Topics: Web Development, HTML

πŸ“€ Join Webdev Training for more courses
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ‘32❀14
HTML for Programmers.zip
161.5 MB
πŸ“±Webdev Training
πŸ“±HTML for Programmers
Please open Telegram to view this post
VIEW IN TELEGRAM
1❀23πŸ‘13
πŸ”… ChatGPT for Web Developers

🌐 Author: Sandy Ludosky
πŸ”° Level: Intermediate

⏰ Duration: 2h 29m

πŸŒ€ Level up as a professional web developer by learning how to build and optimize web applications using ChatGPT.


πŸ“— Topics: Web Development, ChatGPT

πŸ“€ Join Webdev Training for more courses
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ‘20❀11πŸ”₯1
ChatGPT for Web Developers.zip
317.9 MB
πŸ“±Webdev Training
πŸ“±ChatGPT for Web Developers
Please open Telegram to view this post
VIEW IN TELEGRAM
3πŸ”₯19πŸ‘15❀9
Ex_Files_ChatGPT_for_Developers.zip
2.2 MB
πŸ“¦ Exercise Files
❀11πŸ”₯9πŸ‘8
This is something that got supported by all browsers very recently!

Usually, you would use the align-content property with a flex or a grid container.

πŸ₯± So to make some content vertically centered, you had to make the parent a flex or grid first

🀩 But no longer, the align-content attribute now works with block display items too (which is the default display type) enabling us to center items vertically in a single line!
πŸ‘28❀25
πŸ”° ComboBox Functionality with HTML

Integrating the element in your HTML forms enhances user experience by combining the simplicity of a dropdown with the flexibility of free text input, offering a powerful solution for modern combobox functionality.
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ‘31❀17
Some minor tricks for adding that ✨ pixie dust ✨ to your website!
πŸ‘33❀19πŸ”₯9
Have you ever struggled to set 100% width on an item while also setting some margin for it I'm CSS? Once you know this trick you no longer have to!


πŸ‘‰ The "width" we set on CSS element is applied till the border of the element (content, padding and border)

But what if we want the element to have some margin as well but still fit inside the patent?

You may try to use some 🧠 math like calc(100% - 40px), but with the "stretch" keyword for the width property, CSS automatically does this for you.

πŸ”₯ This helps to easily fit an element inside it's parent even when it has some margin!
❀36πŸ‘29πŸ”₯4