Web development
4.16K subscribers
426 photos
31 videos
102 files
99 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
CSS Cursor Properties
๐Ÿ‘2
๐Ÿ‘€ Eye Toggler Effect || HTML & CSS

๐Ÿ’ปGet code
๐Ÿ‘2
๐Ÿคฃ8
Which CSS property is used to make text bold?
Anonymous Quiz
41%
font-weight
12%
text-weight
35%
bold
13%
font-style
๐Ÿ˜1
๐Ÿ”ฅ2
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
โค1
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