Forwarded from Programming World๐จโ๐ป (โ ๏ธAnonymus Venomโ ๏ธ)
YouTube
Web Development In 2021 - A Practical Guide
This is my yearly guide to web development. I describe web technologies that are commonly needed as well as new trends and give you multiple options to create and plan your learning path to reach your goals.
Find a list of my latest Udemy courses at:
htโฆ
Find a list of my latest Udemy courses at:
htโฆ
Forwarded from Learn JavaScriptโข
Free resources for learning Full Stack Web Development
#web #full_stack #free #html #css #javascript
Follow @learn_JavaScript_js for more
github.com/bmorelli25/Become-A-Full-Stack-Web-Developer
#web #full_stack #free #html #css #javascript
Follow @learn_JavaScript_js for more
github.com/bmorelli25/Become-A-Full-Stack-Web-Developer
Forwarded from Programming World๐จโ๐ป (โ ๏ธAnonymus Venomโ ๏ธ)
โญUDEMY FREE COURSESโญ
โจWeb Development Masterclass - Complete Certificate Courseโจ
Link: https://bit.ly/3b3Lh3h
โจEssential Web Developer and SQL Skills For Beginnersโจ
Link: https://bit.ly/3pWo33t
โจThe Complete Front-End Web Development Course!โจ
Link: https://bit.ly/3pG8ZXt
โจThe Complete Full-Stack JavaScript Course!โจ
Link: https://bit.ly/3pJhyAD
#webdevelopment #html #css #Javascript
Follow @Programmingworld_dev for more
โจWeb Development Masterclass - Complete Certificate Courseโจ
Link: https://bit.ly/3b3Lh3h
โจEssential Web Developer and SQL Skills For Beginnersโจ
Link: https://bit.ly/3pWo33t
โจThe Complete Front-End Web Development Course!โจ
Link: https://bit.ly/3pG8ZXt
โจThe Complete Full-Stack JavaScript Course!โจ
Link: https://bit.ly/3pJhyAD
#webdevelopment #html #css #Javascript
Follow @Programmingworld_dev for more
Forwarded from Learn Web Development
Front-end developer roadmap for 2021๐๐ป
First things first, you need an editor to write code. There are plethora of editors out there like atom, VS code, sublime etc
I recommend you to start with VS code. Why?๐๐ผ
๐นMany built-in features
๐นIt's fast
๐นLarge community
๐นIntelliSense code completion and debugging
Don't want to download an editor due to memory issue or something else?
Don't worry we have lots of online editors also๐๐ผ
๐นCODEPEN :-
๐https://t.co/aq2wrH6cD3
๐นCODE SANDBOX :-
๐https://t.co/drzfitzmsG
Now you're all set to write code and create beautiful websites
A typical website can be divide into three phases
- HTML ๐งฑ
- CSS ๐จ
- JavaScript โ๏ธ
1. HTML
- It is used to build the skeleton for your website
- It's a markup language that totally operates on tags
- You can master it with 10 days
๐น W3schools- HTML :- https://t.co/TlrsSM0dh9
2. CSS
- It is used to give the styling for your website
- Cascading Style Sheets, that totally operates on different properties
- You can learn it within 20-25 days but it will take time to master it
There are 520 distinct properties in CSS. But according to my personal experience, you will hardly use all of them.
Generally CSS revolves around๐๐ผ
- Box model
- Position
- Background
- Animation
- Media query
- Flex box
- CSS grid
Learning resources for CSS
Documentation
๐น W3SCHOOLS-CSS :-
๐ https://t.co/bBk1rSijxo
Check out this amazing article in order to learn CSS by playing games
๐นhttps://t.co/2klS6NLZ79
CSS Frameworks
- In simple words CSS frameworks are the CSS code written by some other developers. All you need to do is just import in your HTML file and now you can add styling in your website with even writing CSS code by yourself
- Isn't it cool๐
Learning a particular CSS framework is pretty easy. You can learn them by reading official documentation
- Pick any CSS Frameworks by your choice๐๐ผ
๐นTailwind CSS
๐นBootstrap
๐นBulma
๐นMaterialize CSS
๐นFoundation
... and many more
3.JavaScript
- JS is used to add functionality and behavior in your website
- JavaScript is a popular programming and widely used language for Web Development
- You can't master JS in few days or months, It will take time
But you will be able to create websites in few days.
Start with the basic topics๐๐ผ
- Data types
- Loops
- Conditional statements
- Objects
- Arrays
- Functions
Learning resources
Documentation
๐นhttps://t.co/XkMlZQOF0h
Other learning resources
๐นStart with freecodecamp
๐ freeCodeCamp.org
๐นFree js resources:
๐java5cript .com
Document Object Model (DOM)
- With the HTML DOM, you can access, modify and changes the HTML elements
- When a web page is loaded, the browser creates a Document Object Model of the page.
With the help of DOM, JavaScript can change the
- elements in the page
- attributes
- CSS styling
I mean now you have a super power to make changes in you webpage using JS
Resources for DOM
๐https://t.co/M9bS7wYawD
๐https://t.co/xEsT3lbT1P
I think now it's the right time to learn Git and GitHub (version control)
- Git is a Version Control system used for tracking changes
- GitHub is a code hosting platform of Git
An amazing crash course by freecodecamp on YouTube
๐ https://t.co/ysa17PpoGO
JavaScript front-end frameworks and libraries
There are many like React, Angular, vue, Ember, Backbone etc. All are equally good.
I love React so I'm providing the learning resources for React๐๐ผ
1. React official documents itself.
๐ https://t.co/SSHFCafQsW
2.If you like reading more than watching tutorials like me, here are the well written notes for React.
You can find almost very topic, related to React here.
๐ https://t.co/SKeUltTC5m
3. React notes on geeks site
๐https://t.co/oCvzRLdLHT
4. You can test you React knowledge on this website. You have to write short code snippets here.
Really helpful be sure to check it out.
๐ https://t.co/oXvqRPwzhe
5. If you like watching tutorials rather than reading, No issues.
You can check the traversymedia React crash course
First things first, you need an editor to write code. There are plethora of editors out there like atom, VS code, sublime etc
I recommend you to start with VS code. Why?๐๐ผ
๐นMany built-in features
๐นIt's fast
๐นLarge community
๐นIntelliSense code completion and debugging
Don't want to download an editor due to memory issue or something else?
Don't worry we have lots of online editors also๐๐ผ
๐นCODEPEN :-
๐https://t.co/aq2wrH6cD3
๐นCODE SANDBOX :-
๐https://t.co/drzfitzmsG
Now you're all set to write code and create beautiful websites
A typical website can be divide into three phases
- HTML ๐งฑ
- CSS ๐จ
- JavaScript โ๏ธ
1. HTML
- It is used to build the skeleton for your website
- It's a markup language that totally operates on tags
- You can master it with 10 days
๐น W3schools- HTML :- https://t.co/TlrsSM0dh9
2. CSS
- It is used to give the styling for your website
- Cascading Style Sheets, that totally operates on different properties
- You can learn it within 20-25 days but it will take time to master it
There are 520 distinct properties in CSS. But according to my personal experience, you will hardly use all of them.
Generally CSS revolves around๐๐ผ
- Box model
- Position
- Background
- Animation
- Media query
- Flex box
- CSS grid
Learning resources for CSS
Documentation
๐น W3SCHOOLS-CSS :-
๐ https://t.co/bBk1rSijxo
Check out this amazing article in order to learn CSS by playing games
๐นhttps://t.co/2klS6NLZ79
CSS Frameworks
- In simple words CSS frameworks are the CSS code written by some other developers. All you need to do is just import in your HTML file and now you can add styling in your website with even writing CSS code by yourself
- Isn't it cool๐
Learning a particular CSS framework is pretty easy. You can learn them by reading official documentation
- Pick any CSS Frameworks by your choice๐๐ผ
๐นTailwind CSS
๐นBootstrap
๐นBulma
๐นMaterialize CSS
๐นFoundation
... and many more
3.JavaScript
- JS is used to add functionality and behavior in your website
- JavaScript is a popular programming and widely used language for Web Development
- You can't master JS in few days or months, It will take time
But you will be able to create websites in few days.
Start with the basic topics๐๐ผ
- Data types
- Loops
- Conditional statements
- Objects
- Arrays
- Functions
Learning resources
Documentation
๐นhttps://t.co/XkMlZQOF0h
Other learning resources
๐นStart with freecodecamp
๐ freeCodeCamp.org
๐นFree js resources:
๐java5cript .com
Document Object Model (DOM)
- With the HTML DOM, you can access, modify and changes the HTML elements
- When a web page is loaded, the browser creates a Document Object Model of the page.
With the help of DOM, JavaScript can change the
- elements in the page
- attributes
- CSS styling
I mean now you have a super power to make changes in you webpage using JS
Resources for DOM
๐https://t.co/M9bS7wYawD
๐https://t.co/xEsT3lbT1P
I think now it's the right time to learn Git and GitHub (version control)
- Git is a Version Control system used for tracking changes
- GitHub is a code hosting platform of Git
An amazing crash course by freecodecamp on YouTube
๐ https://t.co/ysa17PpoGO
JavaScript front-end frameworks and libraries
There are many like React, Angular, vue, Ember, Backbone etc. All are equally good.
I love React so I'm providing the learning resources for React๐๐ผ
1. React official documents itself.
๐ https://t.co/SSHFCafQsW
2.If you like reading more than watching tutorials like me, here are the well written notes for React.
You can find almost very topic, related to React here.
๐ https://t.co/SKeUltTC5m
3. React notes on geeks site
๐https://t.co/oCvzRLdLHT
4. You can test you React knowledge on this website. You have to write short code snippets here.
Really helpful be sure to check it out.
๐ https://t.co/oXvqRPwzhe
5. If you like watching tutorials rather than reading, No issues.
You can check the traversymedia React crash course
Forwarded from Learn Web Development
๐ https://t.co/eOiYUM0V25
6.Youโll develop a strong understanding of Reactโs most essential concepts.
๐ https://t.co/ULjmU2eZ9n
7. Learn in an interactive environment. Understand how React works not just how to build with React.
๐ https://t.co/rlHF6YC1gc
8. A well written material on javapoint.
Give it a look
๐ https://t.co/MwAjMBBVT3
Advance Learning
- PWA
- JAMstack
- PWA are the web applications that are intended to work on any platform that uses a standards-compliant browser, including both desktop and mobile devices
- JAMstack stands for JavaScript, APIs, and Markup. Designed to make the web faster, more secure, and easier to scalable.
๐นhttps://t.co/n7mPgDLlN8
๐นhttps://t.co/4bMt5hRQKX
That's pretty much it for this thread. I hope you like itโค๏ธ
#Webdevelopment #JS #JavaScript #Html #Css #web
Follow @learn_webdevelopment for Web development tutorials
6.Youโll develop a strong understanding of Reactโs most essential concepts.
๐ https://t.co/ULjmU2eZ9n
7. Learn in an interactive environment. Understand how React works not just how to build with React.
๐ https://t.co/rlHF6YC1gc
8. A well written material on javapoint.
Give it a look
๐ https://t.co/MwAjMBBVT3
Advance Learning
- PWA
- JAMstack
- PWA are the web applications that are intended to work on any platform that uses a standards-compliant browser, including both desktop and mobile devices
- JAMstack stands for JavaScript, APIs, and Markup. Designed to make the web faster, more secure, and easier to scalable.
๐นhttps://t.co/n7mPgDLlN8
๐นhttps://t.co/4bMt5hRQKX
That's pretty much it for this thread. I hope you like itโค๏ธ
#Webdevelopment #JS #JavaScript #Html #Css #web
Follow @learn_webdevelopment for Web development tutorials
Learn Html pinned ยซFront-end developer roadmap for 2021๐๐ป First things first, you need an editor to write code. There are plethora of editors out there like atom, VS code, sublime etc I recommend you to start with VS code. Why?๐๐ผ ๐นMany built-in features ๐นIt's fast ๐นLargeโฆยป
Forwarded from Learn JavaScriptโข
โจ Speed up your learning process by creating projectsโจ
Check out these amazing project's tutorial on YouTube๐
1๏ธโฃ ECommerce Web Shop๐
๐ https://t.co/XoGriuRAFz
2๏ธโฃ 10 JavaScript Projects in 10 Hours
๐ https://t.co/dA2dGhuzw9
3๏ธโฃ Simple photo Editor๐ธ๐ผ๏ธ
๐ https://t.co/c3G9O3Gy7Y
4๏ธโฃ Music App๐ต
๐ https://t.co/q5Kv3mSDqK
5๏ธโฃ Expense Tracker๐ธ
๐ https://t.co/mdCKadYyhL
6๏ธโฃ Chat Application
๐ https://t.co/GJUQEfsm3W
7๏ธโฃ Full-Stack AMAZON Clone
๐ https://t.co/SCXzRnihdC
8๏ธโฃ Portfolio website
๐ https://t.co/0guAze0oDw
9๏ธโฃ Portfolio using Tailwind CSS
๐ https://t.co/yOBVh23iKL
๐ Flappy Bird
๐ https://t.co/HDc4fCMCa7
#html #css#Javascript #JS #projects #Games
Follow @learn_JavaScript_js for more JavaScript content.
Check out these amazing project's tutorial on YouTube๐
1๏ธโฃ ECommerce Web Shop๐
๐ https://t.co/XoGriuRAFz
2๏ธโฃ 10 JavaScript Projects in 10 Hours
๐ https://t.co/dA2dGhuzw9
3๏ธโฃ Simple photo Editor๐ธ๐ผ๏ธ
๐ https://t.co/c3G9O3Gy7Y
4๏ธโฃ Music App๐ต
๐ https://t.co/q5Kv3mSDqK
5๏ธโฃ Expense Tracker๐ธ
๐ https://t.co/mdCKadYyhL
6๏ธโฃ Chat Application
๐ https://t.co/GJUQEfsm3W
7๏ธโฃ Full-Stack AMAZON Clone
๐ https://t.co/SCXzRnihdC
8๏ธโฃ Portfolio website
๐ https://t.co/0guAze0oDw
9๏ธโฃ Portfolio using Tailwind CSS
๐ https://t.co/yOBVh23iKL
๐ Flappy Bird
๐ https://t.co/HDc4fCMCa7
#html #css#Javascript #JS #projects #Games
Follow @learn_JavaScript_js for more JavaScript content.
Forwarded from Programming World๐จโ๐ป (โ ๏ธAnonymus Venomโ ๏ธ)
โจWant to learn/master git and GitHub?โจ
Here are some Best Free Resources for you๐๐ป
โก๏ธ Git introduction for "advanced beginners," who are still struggling.
๐ https://t.co/yRMuWX9pO7
โก๏ธ Git Immersion
A guided tour that walks through the fundamentals of Git, inspired by the premise that to know a thing is to do it.
๐ https://t.co/E1WEzZopeE
โก๏ธ Official Guide/Tutorials by GitHub
๐ https://t.co/My8G82xmsj
โก๏ธ How to get out of common git mistakes described in plain English.
(Highly recommended for beginner)
๐ https://t.co/DWtvFynck5
โก๏ธ Git Cheat Sheet by GitHub
๐ https://t.co/WF8pLuLpE4
โก๏ธ Best Practices
๐ https://t.co/fcrZ7NuIWt
โก๏ธ Become a git guru, complete guide by Atlassian.
๐https://t.co/5GStdyNvZS
โก๏ธPro tip
Learn the basics and keep working on projects. You will learn about git side by side through your mistakes
Follow @Programmingworld_dev for more programming stuff
Here are some Best Free Resources for you๐๐ป
โก๏ธ Git introduction for "advanced beginners," who are still struggling.
๐ https://t.co/yRMuWX9pO7
โก๏ธ Git Immersion
A guided tour that walks through the fundamentals of Git, inspired by the premise that to know a thing is to do it.
๐ https://t.co/E1WEzZopeE
โก๏ธ Official Guide/Tutorials by GitHub
๐ https://t.co/My8G82xmsj
โก๏ธ How to get out of common git mistakes described in plain English.
(Highly recommended for beginner)
๐ https://t.co/DWtvFynck5
โก๏ธ Git Cheat Sheet by GitHub
๐ https://t.co/WF8pLuLpE4
โก๏ธ Best Practices
๐ https://t.co/fcrZ7NuIWt
โก๏ธ Become a git guru, complete guide by Atlassian.
๐https://t.co/5GStdyNvZS
โก๏ธPro tip
Learn the basics and keep working on projects. You will learn about git side by side through your mistakes
Follow @Programmingworld_dev for more programming stuff
Forwarded from Learn CSSโข
โจ63 RESOURCES OF CSS๐โจ
๐ COLORS
1. Color Hunt
๐ https://t.co/xR0FVT299d
2. Coolors
๐ https://t.co/fDBRU6JzNz
3. HTML color codes
๐ https://t.co/umYSuvtA9z
4. UI Gradients
๐ https://t.co/wl8I6pPzO3
5. Gradient generator
๐ https://t.co/Yr6pueoWgx
6. Encycolorpedia
๐ https://t.co/TATnFDElEu
7. WebFx
๐ https://t.co/vOqEXNMlG0
8. Radial Gradient
๐ https://t.co/dlCExilHAT
9. COLORS
๐ https://t.co/vaNoGFLxNY
10. Flat UI colors 2
๐ https://t.co/FDFKbhCcx3
๐ CODE SNIPPETS
11. Web tools
๐ https://t.co/K9QzJeX1gd
12. Little snippets
๐ https://t.co/qxAyA2wA6U
13. Enjoy CSS
๐ https://t.co/Jt0rw3MT0n
14. CSS Tricks
๐ https://t.co/DLt7cjx7UN
15. CSS Deck
๐ https://t.co/mbBflUSDl5
16. W3 How to
๐ https://t.co/VHF5yDxSQe
17. Snipplr
๐ https://t.co/Nwys4AtCur
18. Stack overflow
๐ https://t.co/8rEohtDYIS
19. Codepen
๐ https://t.co/n0NfUDHipj
20. Code my UI
๐ https://t.co/N8NQLf8ehn
๐ DOCUMENTATION AND NOTES
21. W3 Schools
๐ https://t.co/bBk1rSijxo
22. MDN
๐ https://t.co/rp3CTZtHqY
23. DevDocs
๐ https://t.co/R6lI9CWzOU
24. Geeks for geeks
๐ https://t.co/FOBY8SxTGw
25. Tutorials point
๐ https://t.co/iyzeX0qjZ7
๐ CSS GENERATORS
26. CSS button creator
๐ https://t.co/akgUkz6JBU
27. Blob Maker
๐ https://t.co/7dk2UceFrg
28. Waves maker
๐ https://t.co/eYqUUcUFth
29. Enjoy CSS
๐ https://t.co/Jt0rw3MT0n
30. Neumorphic UI
๐ https://t.co/2c7frT1q06
31. Glassmorphism Generator
๐ https://t.co/OXQTU724rO
32. Keyframes
๐ https://t.co/IFmIEgDiVY
33. Animista
๐ https://t.co/N1UuMCedJS
34. Fancy border
๐ https://t.co/ND4asCR7cy
35. CSS Generators tool
๐ https://t.co/e4idW76y8j
36. CSS 3 maker
๐ https://t.co/DNY3DvHopw
37. CSS clip path maker
๐ https://t.co/Vz3ncWSbFc
38. CSS shapes generator
๐ https://t.co/Xq5ay45cL7
39. Pattern generator
๐ https://t.co/NQuV7pxLIz
40. Background image generator
๐ https://t.co/46MtBPayKq
๐ DESIGN INSPIRATION
41. CSS design awards
๐ https://t.co/E91CzajKvu
42. Awwwards
๐ https://t.co/Qa1TSqejM8
43. CSS nectar
๐ https://t.co/1MZEmdDcVq
44. Design modo
๐ https://t.co/updhmaFZyi
45. CSS winner
๐ https://t.co/nRrbYj06Y7
๐ YOUTUBE TUTORIALS
46. Free code camp
๐ https://t.co/6XnTabhGQX
47. Traversy media
๐ https://t.co/fYaxT3DCy2
48. Coding artist
๐ https://t.co/JZ29Y8Fis2
49. Edureka
๐ https://t.co/bCiEvdRG4z
50. Red Stapler
๐ https://t.co/dq5YJA96Gl
๐ GITHUB REPO
51. Awesome CSS
๐ https://t.co/Jdm7zVzg4Z
52. 30 seconds of CSS
๐ https://t.co/S1o9QfwJPM
53. CSS Protips
๐ https://t.co/5haB2xTWuz
54. Awesome flexbox
๐ https://t.co/plkIV609lg
55. Understanding flexbox
๐ https://t.co/mUtiez6eWV
๐ CHROME EXTENSIONS
59. CSS Peeper
๐ https://t.co/3OCrTJBfV8
60. Pesticide
๐ https://t.co/320fLzeMll
61. Stylebot
๐ https://t.co/7hWBvvIYMQ
62. Perfect Pixel
๐ https://t.co/wdLauKshN3
63. Colorpick eyedropper
๐ https://t.co/x6Xaoc0ePW
#Webdevelopment #Html #Css #cssresources #css3
Follow @learn_CSS_web for more CSS Content
๐ COLORS
1. Color Hunt
๐ https://t.co/xR0FVT299d
2. Coolors
๐ https://t.co/fDBRU6JzNz
3. HTML color codes
๐ https://t.co/umYSuvtA9z
4. UI Gradients
๐ https://t.co/wl8I6pPzO3
5. Gradient generator
๐ https://t.co/Yr6pueoWgx
6. Encycolorpedia
๐ https://t.co/TATnFDElEu
7. WebFx
๐ https://t.co/vOqEXNMlG0
8. Radial Gradient
๐ https://t.co/dlCExilHAT
9. COLORS
๐ https://t.co/vaNoGFLxNY
10. Flat UI colors 2
๐ https://t.co/FDFKbhCcx3
๐ CODE SNIPPETS
11. Web tools
๐ https://t.co/K9QzJeX1gd
12. Little snippets
๐ https://t.co/qxAyA2wA6U
13. Enjoy CSS
๐ https://t.co/Jt0rw3MT0n
14. CSS Tricks
๐ https://t.co/DLt7cjx7UN
15. CSS Deck
๐ https://t.co/mbBflUSDl5
16. W3 How to
๐ https://t.co/VHF5yDxSQe
17. Snipplr
๐ https://t.co/Nwys4AtCur
18. Stack overflow
๐ https://t.co/8rEohtDYIS
19. Codepen
๐ https://t.co/n0NfUDHipj
20. Code my UI
๐ https://t.co/N8NQLf8ehn
๐ DOCUMENTATION AND NOTES
21. W3 Schools
๐ https://t.co/bBk1rSijxo
22. MDN
๐ https://t.co/rp3CTZtHqY
23. DevDocs
๐ https://t.co/R6lI9CWzOU
24. Geeks for geeks
๐ https://t.co/FOBY8SxTGw
25. Tutorials point
๐ https://t.co/iyzeX0qjZ7
๐ CSS GENERATORS
26. CSS button creator
๐ https://t.co/akgUkz6JBU
27. Blob Maker
๐ https://t.co/7dk2UceFrg
28. Waves maker
๐ https://t.co/eYqUUcUFth
29. Enjoy CSS
๐ https://t.co/Jt0rw3MT0n
30. Neumorphic UI
๐ https://t.co/2c7frT1q06
31. Glassmorphism Generator
๐ https://t.co/OXQTU724rO
32. Keyframes
๐ https://t.co/IFmIEgDiVY
33. Animista
๐ https://t.co/N1UuMCedJS
34. Fancy border
๐ https://t.co/ND4asCR7cy
35. CSS Generators tool
๐ https://t.co/e4idW76y8j
36. CSS 3 maker
๐ https://t.co/DNY3DvHopw
37. CSS clip path maker
๐ https://t.co/Vz3ncWSbFc
38. CSS shapes generator
๐ https://t.co/Xq5ay45cL7
39. Pattern generator
๐ https://t.co/NQuV7pxLIz
40. Background image generator
๐ https://t.co/46MtBPayKq
๐ DESIGN INSPIRATION
41. CSS design awards
๐ https://t.co/E91CzajKvu
42. Awwwards
๐ https://t.co/Qa1TSqejM8
43. CSS nectar
๐ https://t.co/1MZEmdDcVq
44. Design modo
๐ https://t.co/updhmaFZyi
45. CSS winner
๐ https://t.co/nRrbYj06Y7
๐ YOUTUBE TUTORIALS
46. Free code camp
๐ https://t.co/6XnTabhGQX
47. Traversy media
๐ https://t.co/fYaxT3DCy2
48. Coding artist
๐ https://t.co/JZ29Y8Fis2
49. Edureka
๐ https://t.co/bCiEvdRG4z
50. Red Stapler
๐ https://t.co/dq5YJA96Gl
๐ GITHUB REPO
51. Awesome CSS
๐ https://t.co/Jdm7zVzg4Z
52. 30 seconds of CSS
๐ https://t.co/S1o9QfwJPM
53. CSS Protips
๐ https://t.co/5haB2xTWuz
54. Awesome flexbox
๐ https://t.co/plkIV609lg
55. Understanding flexbox
๐ https://t.co/mUtiez6eWV
๐ CHROME EXTENSIONS
59. CSS Peeper
๐ https://t.co/3OCrTJBfV8
60. Pesticide
๐ https://t.co/320fLzeMll
61. Stylebot
๐ https://t.co/7hWBvvIYMQ
62. Perfect Pixel
๐ https://t.co/wdLauKshN3
63. Colorpick eyedropper
๐ https://t.co/x6Xaoc0ePW
#Webdevelopment #Html #Css #cssresources #css3
Follow @learn_CSS_web for more CSS Content
Forwarded from Learn Web Development
โจIf you divide web development into subparts, it becomes easy to learnโจ
Lesson 1: HTML and CSS ๐งฑ๐จ
Lesson 2: CSS frameworks ๐งฎ
Lesson 3: JS and DOM โ๏ธ๐
Lesson 4: Git and GitHub ๐๏ธ
Lesson 5: React / Angular / Vue โ๏ธ
Lesson 6: Node.js ๐๐
Lesson 7: API and Database ๐๏ธ๐
#Webdevelopment
Follow @learn_webdevelopment for more Web Dev content
Lesson 1: HTML and CSS ๐งฑ๐จ
Lesson 2: CSS frameworks ๐งฎ
Lesson 3: JS and DOM โ๏ธ๐
Lesson 4: Git and GitHub ๐๏ธ
Lesson 5: React / Angular / Vue โ๏ธ
Lesson 6: Node.js ๐๐
Lesson 7: API and Database ๐๏ธ๐
#Webdevelopment
Follow @learn_webdevelopment for more Web Dev content
โจCheck out these amazing template sitesโจ
๐ https://t.co/bUcMPbPi56
๐ https://t.co/b3lRmgTMMw
๐ https://t.co/KFHSRGsJCF
๐ https://t.co/Nr1PSKXLFl
๐ https://t.co/wlIjPhHJAK
๐ https://t.co/WI0uFLN4Xu
๐ https://t.co/90ipM5tjoi
๐ https://t.co/QMHWXYxvyf
๐ https://t.co/bUcMPbPi56
๐ https://t.co/b3lRmgTMMw
๐ https://t.co/KFHSRGsJCF
๐ https://t.co/Nr1PSKXLFl
๐ https://t.co/wlIjPhHJAK
๐ https://t.co/WI0uFLN4Xu
๐ https://t.co/90ipM5tjoi
๐ https://t.co/QMHWXYxvyf
Forwarded from Learn Web Development
Git learning is important in the field of development. I suggest you learn it after HTML, CSS and JS
Learn Git interactively๐
๐ https://t.co/i6aRYkkwaW
๐ https://t.co/9gl7aF0HuZ
๐ https://t.co/E5pj90UCDz
#Github #Git
Follow @learn_webdevelopment for more Web Dev content
Learn Git interactively๐
๐ https://t.co/i6aRYkkwaW
๐ https://t.co/9gl7aF0HuZ
๐ https://t.co/E5pj90UCDz
#Github #Git
Follow @learn_webdevelopment for more Web Dev content
Forwarded from Learn CSSโข
Telegraph
Create a Gradient Border
Trick to Create a Gradient Border ๐ This is pretty easy. It will just take 5 minutes๐ STEP 1: - Create your element around which you want to create gradient border In this example I have a sqaure around which I'll create gradient border STEP 2: - Create pseudoโฆ
Forwarded from Learn JavaScriptโข
This media is not supported in your browser
VIEW IN TELEGRAM
I created a minimal card design using CSS have a look๐
Forwarded from Learn JavaScriptโข
If you guys want to try
Check the code below๐
HTML:
Check the code below๐
HTML:
<div class="container">
<div class="content">
<h1>LEARN JAVASCRIPT</h1>
<h3>All info and tutorial of JAVA SCRIPT (JS)</h3>
</div>
<div class="flap"></div>
</div>
CSS:
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;900&display=swap');
body {
background: #f2f2f2;
}
.container {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
height: 400px;
width: 600px;
background: #f2f2f2;
overflow: hidden;
border-radius: 20px;
cursor: pointer;
box-shadow: 0 0 20px 8px #d0d0d0;
}
.content {
position: absolute;
top: 50%;
transform: translatey(-50%);
text-align: justify;
color: black;
padding: 40px;
font-family: 'Merriweather', serif;
}
h1 {
font-weight: 900;
text-align: center;
}
h3 {
font-weight: 300;
}
.flap {
width: 100%;
height: 100%;
}
.flap::before {
position: absolute;
content: "";
height: 100%;
width: 50%;
background: url("https://pbs.twimg.com/profile_images/1347537601989730307/QDQ0IZXv_400x400.jpg") white;
background-position: 100px;
background-repeat: no-repeat;
transition: 1s;
}
.flap::after {
position: absolute;
content: "";
height: 100%;
width: 50%;
right: 0;
background: url("https://pbs.twimg.com/profile_images/1347537601989730307/QDQ0IZXv_400x400.jpg") white;
background-position: -200px;
background-repeat: no-repeat;
transition: 1s;
}
.container:hover .flap::after {
transform: translatex(300px);
}
.container:hover .flap::before{
transform: translatex(-300px);
}
Forwarded from Learn JavaScriptโข
โจ5 Coding Projects You Should Include in Your Front End Portfolioโจ
https://telegra.ph/5-Coding-Projects-You-Should-Include-in-Your-Front-End-Portfolio-02-09
https://telegra.ph/5-Coding-Projects-You-Should-Include-in-Your-Front-End-Portfolio-02-09
Telegraph
5 Coding Projects You Should Include in Your Front End Portfolio
A portfolio is a great way to show off your skills to potential employers. And it's especially helpful for entry-level developers who might not have any professional work experience. However, a common problem you might have when building a portfolio is knowingโฆ