uk
Feedback
Web Developement

Web Developement

Відкрити в Telegram
4 455
Підписники
+424 години
+117 днів
+4230 день
Архів дописів
008 Your First CSS

007 HTML Tags

006 Build Your First Website

005 HTML, CSS, Javascript

004 Traceroute

003 The Internet Backbone

002 Breaking Google

001 Browsing the Web

💸 Fundamentals of Web Development
💸 Fundamentals of Web Development

👩‍💻 Learn DOM Manipulation In 18 Minutes
DOM manipulation is tough. There are lots of methods and techniques you need to master and it is not obvious which methods are best for each scenario. In this video I cover the 14 most important DOM manipulation methods that you need to know.
🧠 Concepts Covered: - Creating elements - Adding elements - Modifying data attributes - Removing elements

🔰 The Complete React Native + Hooks Course 🌟 4.6 - 44567 votes 💰 Original Price: $74.99 📖 Understand React Native with Ho
🔰 The Complete React Native + Hooks Course 🌟 4.6 - 44567 votes 💰 Original Price: $74.99
📖 Understand React Native with Hooks, Context, and React Navigation.
🔊 Taught By: Stephen Grider 📤 Download Full Course 📤 Download All Courses

⌨️ inline-size in CSS Ensures elements like buttons or text containers adapt their width dynamically, maintaining a consisten
⌨️ inline-size in CSS
Ensures elements like buttons or text containers adapt their width dynamically, maintaining a consistent layout across different devices and languages.

🧠 Face Recognition with Machine Learning + Deploy Flask App 🌟 4.4 - 459 votes 💰 Original Price: $69.99 📖 Create an Face R
🧠 Face Recognition with Machine Learning + Deploy Flask App 🌟 4.4 - 459 votes 💰 Original Price: $69.99
📖 Create an Face Recognition project from scratch with Python, OpenCV , Machine Learning Algorithms, Flask, Heroku Deploy
🔊 Taught By: datascience Anywhere, G Sudheer 📤 Download Full Course 📤 Download All Courses

⌨️ Popover in HTML The popover attribute is a global attribute, meaning it can be applied to any HTML element to convert it i
⌨️ Popover in HTML
The popover attribute is a global attribute, meaning it can be applied to any HTML element to convert it into a popover.

+6
⌨️ Shimmering Badge Here is a simple implementation for a shimmering badge to grab the attention of your audience!
⚠️ Although not mentioned in this post, it is important to respect user's preferences regarding animations and enable this only when they are okay with animations. You can check for this using the prefers reduced motion media queries.

An idea I stole from MDN website 😛 how to setup a fade out for long text in article cards, etc ✨ The trick is to create a ps
+2
An idea I stole from MDN website 😛 how to setup a fade out for long text in article cards, etc ✨ The trick is to create a psuedo element that is placed in a manner to cover only the last line, and add a horizontal gradient, from full transparent to background color (white) 💡 You could also use CSS custom properties to avoid referring to 1.5rem multiple times

Recently, CSS has supported "logical" direction based properties for margin, padding, border, etc! Previous to this, we were
Recently, CSS has supported "logical" direction based properties for margin, padding, border, etc! Previous to this, we were able to define properties based on physical directions like left, right, etc. This was a problem when different writing modes come into play, such as Arabic which is written from right to left, or traditional Chinese, Japanese, which are written from top to bottom. 👉 These new properties automatically adjust to the writing mode without the need for media queries. "block" indicates main axis of writing mode (top to bottom for English) "inline" indicates the cross axis of the writing mode (left to right for English) You can combine this to create different properties for margin, padding, border, size and inset 👉 margin-block-end 👉 padding-inline 👉 border-inline-start 👉 inline-size 👉 block-size ✨ This also has the benefit that it provides shorthands like margin-inline which sets both left and right margin

⌨️ Scroll-driven animations in CSS!! Lets you create partial or full-page visuals with elements animating into and within the
⌨️ Scroll-driven animations in CSS!!
Lets you create partial or full-page visuals with elements animating into and within the viewport, also known as scrollytelling, for dynamic visual impact.

📢 Announcement! 📢 🎉 The votes are in, and the winner is: Programming and Coding Tutorials Channel! 💻✨ 🚀 We’ll be creating this channel as soon as possible, so stay tuned and stay connected for updates! 🌟 Thank you all for your participation and support! 🙌

⌨️ Glass Effect in CSS To create a glass effect (also known as a glassmorphism effect) in CSS, you can use a combination of p
⌨️ Glass Effect in CSS
To create a glass effect (also known as a glassmorphism effect) in CSS, you can use a combination of properties including background, backdrop-filter, box-shadow, and border.