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
JSON Web Token
JSX VS HTML.pdf
1.7 MB
JSX VS HTML
👍1
API Architecture Styles
How DNS Works
👍6
API Design Best Practices
👍1
HTML and HTML5 free courses

HTML Essential Training

⭐️ Rating: 4.7 out of 5
🎬 41 video lessons
Modules: 10
Duration: 2h 45m
🏃‍♂️ Self paced
Teacher: Jen Simmons
Source: linkedin
🔗 Course link

HTML5
Rating ⭐️: 4.1 out of 5
🎬 50 video lessons
🏃‍♂️ Self paced
Teacher: Prof. Bucky Roberts
Source: freevideolectures
🔗 Course link

A Complete Introductory Tutorial on HTML5
Rating ⭐️: 4.4 out of 5
Students 👨‍🎓: 26,542
Duration : 4hr 21min
Created by: Yatit Thakker
🔗 Course link

Intro to HTML
🎬 9 video lesson
Duration : less than 1 hour
🏃‍♂️ Self paced
📄 Notes, Documentation
☢️ Challenges
Teacher: Pamela
Source: Khan Academy
🔗 HTML Basics
🔗 More HTML Tags

Learn HTML by Building a Cat Photo App (No Video)
67 Interactive lessons
🏃‍♂️ Self paced
Resource: freecodecamp
🔗 Course link

Learn HTML
🎬
24 video lesson
Duration : Less than 2 hours
🏃‍♂️ Self paced
Resource: ilovecoding
🔗 Course link

HTML Tutorials For Beginners
🎬
17 video lesson
Duration : 2-3 hours worth of material
🏃‍♂️ Self paced
Teacher: Net Ninja
Resource: Class Central
🔗 Course link

HTML5 Tutorials Playlist
🎬
53 video lesson
🏃‍♂️ Self paced
Teacher: thenewboston
🔗 Course link


Books
HTML: A Beginner’s Guide Fourth Edition
Beginners Guide to HTML
HTML Tutorial
HTML & CSS: The Complete Reference, Fifth Edition (Complete Reference Series)
HTML & CSS Design and Build Websites


#HTML #HTML5

👉Join @bigdataspecialist for more👈
👍21
HTTP Status codes
👍31
Basic Server Types
CSS Cheat sheet
👍2
CSS free courses

CSS Essential Training
Rating ⭐️: 4.7 out of 5
🎬 71 video lessons
Modules: 8
📄 Projects
☢️ Quizes
🏃‍♂️ Self paced
Teacher: Christina Truong
Source: LinkedIn Learning
🔗 Course link

XHTML and CSS
Rating ⭐️: 4.4 out of 5
🎬 46 video lesson
🏃‍♂️ Self paced
Teacher: Prof. Bucky Roberts
Source: freevideolectures
🔗 Course Link

CSS: Zero to Hero in CSS by Styling a Website from Scratch
Rating ⭐️: 4.7 out of 5
Students 👨‍🎓: 25,847
Duration : 6hr 17min
Created by: Jad Khalili
🔗 Course link

Intro to CSS
🎬 24 video lesson
🏃‍♂️ Self paced
📄 Notes, Documentation
☢️ Challenges, Projects
Teacher: Pamela
Source: Khan Academy
🔗 Course link

Learn CSS
🎬
45 video lesson
Duration : More than 2 hours
🏃‍♂️ Self paced
Resource: ilovecoding
🔗 Course link

Responsive Layout with CSS
Rating ⭐️: 4.7 out of 5
🎬 48 video lesson
Modules: 5
Duration: 2h 32m
🏃‍♂️ Self paced
Teacher: Clarissa Peterson
Source: LinkedIn Learning
🔗 Course link

Level Up Your CSS Animation Skills
🎬
30 video lesson
Duration : 3-4 hours worth of material
🏃‍♂️ Self paced
Resource: Class Central
🔗 Course link

Learn Basic CSS by Building a Cafe Menu (No Video)
92Interactive lessons
🏃‍♂️ Self paced
Resource: freecodecamp
🔗 Course link


Books
HTML & CSS: The Complete Reference, Fifth Edition (Complete Reference Series)
HTML & CSS Design and Build Websites
CSS Cheat Sheet

#CSS

👉Join @bigdataspecialist for more👈
👍53🔥1
CSS Cursor Properties
👍2
👀 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