Web development – Telegram
Web development
3.97K subscribers
410 photos
30 videos
80 files
87 links
Web development learning path

Frontend and backend resources.

HTML, CSS, JavaScript, React, APIs and project ideas.

Join 👉 https://rebrand.ly/bigdatachannels

DMCA: @disclosure_bds
Contact: @mldatascientist
Download Telegram
👀 Eye Toggler Effect || HTML & CSS

💻Get code
👍2
🤣8
Which CSS property is used to make text bold?
Anonymous Quiz
40%
font-weight
12%
text-weight
35%
bold
13%
font-style
😁1
Find the error in the code.
The answer should be: 0, 1
Difficulty: Average😐

const createCounter = () => {
let count = 0;
return () => {
console.log(count++);
};
};

const counter1 = createCounter();
const counter2 = createCounter();

counter1();
counter2();
🎬Movie App With Search Function || HTML, CSS & JS

💻Get code
🤣4
Html input types
👏3👍2
Find errors in the code.
Difficulty: Average🤨

class Rectangle {
constructor(width, height) {
this.width = width;
this.height = height;
}

getArea() {
return width * height;
}
}

const rect = new Rectangle(5, 10);
console.log("Area:", rect.getArea());
👍3🤔1
Youtube Clone UI || HTML & CSS

💻Get code
2👍1
🤣10😁2
CSS Tip 💡

We can use the latest CSS features in supported browsers and apply fallback styles in unsupported browsers using the supports at-rule
How to Use Rem Units in CSS!!

Rem units in CSS can be used for setting font sizes, margins, padding, widths, and heights relative to the root element's font-size.
Hidden Gems of Tailwind CSS

Tailwind CSS has some lesser-known features that can make developing web UIs easier.

This article goes over a couple of them, such as using gap-* to add space between elements.

🔗 Link to the article

#css #tailwind
This media is not supported in your browser
VIEW IN TELEGRAM
Two ways to create responsive input fields in CSS!
🔥4👍1
React_js_Design_Patterns_Learn_how_to_build_scalable_React_apps.pdf
3.1 MB
📒 FREE Book

React.js Design Patterns: Learn how to build scalable React appswith ease
(2023)

By:
Anthony Onyekachukwu Okonta

#book
👍3