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…
Forwarded from Learn Web Development
✨Start your 100 Days of Code for mastering web development ✨
In this 100 Days you need to cover mainly 4 technologies
- HTML
- CSS
- JavaScript
- DOM
Starting with HTML, its pretty easy and straight forward. It's a markup that totally operates on tag.
You can get a quick overview of it within few minutes. But wait! Don't rush.... There are a lot of tags
You don't need to learn all tags in one single go
I suggest you to start HTML with a Free crash course.
🔗 HTML: https://t.co/hEPQBMfj2o
Try to play around with all tricky tags like table tags.
You don't need to waste your 10 - 20 days in HTML because as you go further into your journey, you will discover more cool tags and attributes eventually
I think 1 to 5 days for HTML is enough.
After 5 - 6 days it's time to add some styling in your website. And here CSS comes into action
Its totally operates on properties and value. There are 500+ properties. Which takes almost 100 days to learn all🙁..........Just kidding😬
You don't even need to learn all of them.
You must have heard about "Pareto principle" which states that for many outcomes roughly 80% of consequences come from 20% of the causes
Similarly, in order to cover 80% of CSS, you need to learn only 20 properties😍
The cool part about this 100 Days of Code is that all technologies are interconnected. Like when you're working on CSS, you have to work on HTML as well.
So you'll learn about HTML as well while learning CSS
Some important CSS concepts you need to cover
- Display flex
- Display grid
- Box model
- Background
- Color
- Positioning
- Fonts
In my opinion, 25 to 30 days should be enough for CSS. Although they are not fixed you can arrange them according to you.
To be good developer, you need to Google a lot. How quickly you find your solution on Google makes you a good developer
W3 schools and MDN are documentations where you find detailed explanation on each and every topic
So try to learn from there. Try to put everything into practice.
🔗 CSS: https://t.co/6XnTabhGQX
Congratulations🎉
After 30 days, you will be able to make some static sites, personal website and some stunning landing pages.
Time to rewind all your learning and put them together to create a website.
Structure is done✅
Styling is done✅
Time to add behaviour in your website using JavaScript.
JavaScript is deep so I suggest you to learn it from day 31 to the end (100th day)
JavaScript is used for adding logic in your website.
For ex:
- What happens after the user clicks on the button is controlled by JavaScript
- Increase the likes count when user click on the heart button😉
Basic things you need to cover lin JavaScript are
- Data Types
- Var, const, let
- Operators
- Comparators
- Functions
- Loops
- Control statement
- Arrays
- etc
This may sound challenging and confusing but once you start with it, everthing seems like a cake walk.
Don't rush. Try to take short note for future reference it will help you for sure.
So how we can change thing in HTML using JavaScript?
Here DOM comes into play
With the HTML DOM, JavaScript can access and change all the elements of an HTML document
The DOM is powerful but most beginners avoid it or don't take it seriously. Please do not do this.
DOM mainly revolves around methods and value. By method you select where to change and by value you tell what to change.
By the combination of DOM and JavaScript you can perform a lot of cool things.
- You can change styling
- You can change content
- You can change tags
- You can change attributes
- ETC.....
The combination of HTML, CSS, JavaScript and DOM is the most powerful thing in my opinion and once you learn these things. You will become powerful too💪😉
Start your web development journey today. It's now or never.
In this 100 Days you need to cover mainly 4 technologies
- HTML
- CSS
- JavaScript
- DOM
Starting with HTML, its pretty easy and straight forward. It's a markup that totally operates on tag.
You can get a quick overview of it within few minutes. But wait! Don't rush.... There are a lot of tags
You don't need to learn all tags in one single go
I suggest you to start HTML with a Free crash course.
🔗 HTML: https://t.co/hEPQBMfj2o
Try to play around with all tricky tags like table tags.
You don't need to waste your 10 - 20 days in HTML because as you go further into your journey, you will discover more cool tags and attributes eventually
I think 1 to 5 days for HTML is enough.
After 5 - 6 days it's time to add some styling in your website. And here CSS comes into action
Its totally operates on properties and value. There are 500+ properties. Which takes almost 100 days to learn all🙁..........Just kidding😬
You don't even need to learn all of them.
You must have heard about "Pareto principle" which states that for many outcomes roughly 80% of consequences come from 20% of the causes
Similarly, in order to cover 80% of CSS, you need to learn only 20 properties😍
The cool part about this 100 Days of Code is that all technologies are interconnected. Like when you're working on CSS, you have to work on HTML as well.
So you'll learn about HTML as well while learning CSS
Some important CSS concepts you need to cover
- Display flex
- Display grid
- Box model
- Background
- Color
- Positioning
- Fonts
In my opinion, 25 to 30 days should be enough for CSS. Although they are not fixed you can arrange them according to you.
To be good developer, you need to Google a lot. How quickly you find your solution on Google makes you a good developer
W3 schools and MDN are documentations where you find detailed explanation on each and every topic
So try to learn from there. Try to put everything into practice.
🔗 CSS: https://t.co/6XnTabhGQX
Congratulations🎉
After 30 days, you will be able to make some static sites, personal website and some stunning landing pages.
Time to rewind all your learning and put them together to create a website.
Structure is done✅
Styling is done✅
Time to add behaviour in your website using JavaScript.
JavaScript is deep so I suggest you to learn it from day 31 to the end (100th day)
JavaScript is used for adding logic in your website.
For ex:
- What happens after the user clicks on the button is controlled by JavaScript
- Increase the likes count when user click on the heart button😉
Basic things you need to cover lin JavaScript are
- Data Types
- Var, const, let
- Operators
- Comparators
- Functions
- Loops
- Control statement
- Arrays
- etc
This may sound challenging and confusing but once you start with it, everthing seems like a cake walk.
Don't rush. Try to take short note for future reference it will help you for sure.
So how we can change thing in HTML using JavaScript?
Here DOM comes into play
With the HTML DOM, JavaScript can access and change all the elements of an HTML document
The DOM is powerful but most beginners avoid it or don't take it seriously. Please do not do this.
DOM mainly revolves around methods and value. By method you select where to change and by value you tell what to change.
By the combination of DOM and JavaScript you can perform a lot of cool things.
- You can change styling
- You can change content
- You can change tags
- You can change attributes
- ETC.....
The combination of HTML, CSS, JavaScript and DOM is the most powerful thing in my opinion and once you learn these things. You will become powerful too💪😉
Start your web development journey today. It's now or never.
✨CSS is deep but revolves around only few important concepts✨
👇
- Grid
- Flex
- Positioning
- Background
- Color
- Height and Width
- Margin and Padding
- Border
Master these because you will use them mostly
👇
- Grid
- Flex
- Positioning
- Background
- Color
- Height and Width
- Margin and Padding
- Border
Master these because you will use them mostly
✨Roadmap to learn CSS 🎨🛣️✨
- Selectors
- Units
- Background
- Color
- Box model
- Height and width
- Margin and padding
- Border
- Positioning
- display
- Layouts
- Grid and Flex
- Alignment
- Fonts
- Pseudo-classes
- Media query
- Animation
- Preprocessors
- CSS Frameworks
#Webdevelopment #Css
Follow @learn_CSS_web for more CSS Content
- Selectors
- Units
- Background
- Color
- Box model
- Height and width
- Margin and padding
- Border
- Positioning
- display
- Layouts
- Grid and Flex
- Alignment
- Fonts
- Pseudo-classes
- Media query
- Animation
- Preprocessors
- CSS Frameworks
#Webdevelopment #Css
Follow @learn_CSS_web for more CSS Content
Learn CSS™ pinned «✨Roadmap to learn CSS 🎨🛣️✨ - Selectors - Units - Background - Color - Box model - Height and width - Margin and padding - Border - Positioning - display - Layouts - Grid and Flex - Alignment - Fonts - Pseudo-classes - Media query - Animation - Preprocessors…»
✨An Interactive Guide to CSS Transitions✨
https://www.joshwcomeau.com/animation/css-transitions/
#Css #cssresources #css3
Follow @learn_CSS_web for more CSS Content
https://www.joshwcomeau.com/animation/css-transitions/
#Css #cssresources #css3
Follow @learn_CSS_web for more CSS Content
Forwarded from Learn Web Development
✨What does Web Development look like in 2021✨
👇👇👇
- HTML
- CSS
- CSS frameworks
- JS
- DOM
- UI and UX
- RWD
- CLI
- Git and GitHub
- React / Angular / Vue
- NPM
- Node.js
- SQL vs NoSQL
- Databases
- REST
- Postman
- Authentication & Security
- Jamstack
- PWA
- SPA
#Webdevelopment #JS #JavaScript #Html #Css #web
Follow @learn_webdevelopment for Web development tutorials
👇👇👇
- HTML
- CSS
- CSS frameworks
- JS
- DOM
- UI and UX
- RWD
- CLI
- Git and GitHub
- React / Angular / Vue
- NPM
- Node.js
- SQL vs NoSQL
- Databases
- REST
- Postman
- Authentication & Security
- Jamstack
- PWA
- SPA
#Webdevelopment #JS #JavaScript #Html #Css #web
Follow @learn_webdevelopment for Web development tutorials
Forwarded from Programming World👨💻 (☠️Anonymus Venom☠️)
🔰Website Of the Day🔰
✨DevInterview✨
Link🔗:
https://devinterview.io/
You can find full-stack, data structures & software architecture interview questions and answers for developers
Follow @Programmingworld_dev for more programming stuff
✨DevInterview✨
Link🔗:
https://devinterview.io/
You can find full-stack, data structures & software architecture interview questions and answers for developers
Follow @Programmingworld_dev for more programming stuff
CSS is really easy to learn. You can apply beautiful basic styling using just a few properties
- background
- color
- font
- border
- box- shadow
Later on, move onto intermediate topics
- Flex
- Grid
- transform
Now you're ready for some advancement
- media
- keyframes
- background
- color
- font
- border
- box- shadow
Later on, move onto intermediate topics
- Flex
- Grid
- transform
Now you're ready for some advancement
- media
- keyframes
Forwarded from Learn Web Development
✨Web developement code snippets for free✨
🔹Codepen
🔸Codesandbox
🔹CSS-Tricks
🔸Hakim .se
🔹Code My UI
🔸CreativesFeed
🔹Bootsnipp
🔸30 seconds of code
🔹30 Seconds of CSS
🔸Stackoverflow
🔹Code to go
🔸Tweetsnippet
🔹GitHub
🔸W3 Schools
🔹EnjoyCSS
🔸Web Code Tool
#Webdevelopment #JS #JavaScript #Html #Css #web
Follow @learn_webdevelopment for Web development content
🔹Codepen
🔸Codesandbox
🔹CSS-Tricks
🔸Hakim .se
🔹Code My UI
🔸CreativesFeed
🔹Bootsnipp
🔸30 seconds of code
🔹30 Seconds of CSS
🔸Stackoverflow
🔹Code to go
🔸Tweetsnippet
🔹GitHub
🔸W3 Schools
🔹EnjoyCSS
🔸Web Code Tool
#Webdevelopment #JS #JavaScript #Html #Css #web
Follow @learn_webdevelopment for Web development content
Forwarded from Learn Web Development
✨Quick overview and tips to make you web page responsive✨
https://telegra.ph/Quick-overview-and-tips-to-make-you-web-page-responsive-02-20
#Webdevelopment #JS #JavaScript #Html #Css #web
Follow @learn_webdevelopment for Web development content
https://telegra.ph/Quick-overview-and-tips-to-make-you-web-page-responsive-02-20
#Webdevelopment #JS #JavaScript #Html #Css #web
Follow @learn_webdevelopment for Web development content
Telegraph
Quick overview and tips to make you web page responsive
👉 ABSTRACT In this I had covered some quick tips and overview of RWD
✨CSS Animation generators 🎨✨
➢ https://t.co/85G4Jsh1WZ
➢ https://t.co/4N7CrWPJgZ
➢ https://t.co/O7KpqDNqDc
➢ https://t.co/lh2n6duBex
➢ https://t.co/7FPOsSYjmf
➢ https://t.co/LvjzKmaHgS
#Css #cssresources #css3
Follow @learn_CSS_web for more CSS Content
➢ https://t.co/85G4Jsh1WZ
➢ https://t.co/4N7CrWPJgZ
➢ https://t.co/O7KpqDNqDc
➢ https://t.co/lh2n6duBex
➢ https://t.co/7FPOsSYjmf
➢ https://t.co/LvjzKmaHgS
#Css #cssresources #css3
Follow @learn_CSS_web for more CSS Content
Forwarded from Programming World👨💻 (☠️Anonymus Venom☠️)
✨SUPER AMAZING repo🔥🚀✨
Awesome list of everything related to programming, gaming, business, media, etc👇
- Web development
- Machine Learning
- Security
- Programming language
- Dig data
- Gaming
- Books
- Networking
- Many more
LINK 🔗
https://t.co/pEKHuj23sx
Follow @Programmingworld_dev for more programming stuff
Awesome list of everything related to programming, gaming, business, media, etc👇
- Web development
- Machine Learning
- Security
- Programming language
- Dig data
- Gaming
- Books
- Networking
- Many more
LINK 🔗
https://t.co/pEKHuj23sx
Follow @Programmingworld_dev for more programming stuff
Forwarded from Programming World👨💻 (Pavan Kalyan)
✨Web development resources for free✨
1️⃣ Online learning platforms 📘
- Udemy
- FreeCodeCamp
- Treehouse
- Frontend masters
- Coursera
- Traversy media
- SoloLearn
- Codecademy
- Udacity
- Alison
- Code college
- LinkedIn Learning
- Skillshare
- EdX
2️⃣ Editors and share code snippets ✍🏻
- PlayCode
- JSFiddle
- CodePen
- StackBlitz
- JSBin
- Codesandbox
- Codeinterview .io
- godbolt .org
- wandbox .org
- carbon .now.sh
- pastebin .com
- ideone .com
- ide .judge0.com
3️⃣ Documentations and notes 📄
- w3 schools
- mdn
- Devdocs
- geeksforgeeks
- tutorialspoint
- javapoint
4️⃣ Competitive programming 💻
- CodeChef
- HackerEarth
- HackerRank
- AlgoExpert
- LeetCode
- TopCoder
- Codewars
- Codeforces
- Coderbyte
- Exercism
5️⃣ Learn by playing game 🎮
- Grid garden
- Flexbox defense
- Codecombat
- Unfold
- Ruby warrior
- Screeps
- coding game
- CodeMonkey
- CSS diner
- Flexbox froggy
- Check IO
- Cyber-dojo
- Untrusted
6️⃣ Colors 🎨
- Colorhunt
- Paletto
- Design Seeds
- Coolors
- Bootflat
- 0 to 255
- uiGradients
- BrandColors
- Image color picker
- Colour Lovers
- WebGradients
- Egg gradient
- Gradient Hunt
- Color-hex
- FlatUIColors
- CSS gradients
7️⃣ Background
- Repeat-X Repeat-Y
- Texture King
- Pattern8
- Subtle Patterns
- Patternico
- BG Patterns
- Lost and Taken
- Freepik
- Cool backgrounds
- BG generator
8️⃣ Icons ♠
- Icons8
- Captain Icon
- Iconmonstr
- Linear Icons
- Pixeden
- Perfect Icons
- Font Awesome
- flaticon
- Fontello
- The Noun Project
- Endless Icons
- Round Icons
- Iconfinder
- Freeicons
- Icon-icons
- Findicons
9️⃣ Illustrations
- Undraw
- Freepik
- IRA design
- DrawKit
- Absurd Illustrations
- Handz
- freeillustrations .xyz
- Freebie Supply
- ManyPixels
- Vivid.js
- Humaaans
- Open Doodles
- Icons8
- Glazestock
- Paper illustrations
- illlustrations .co
- isometric .online
🔟 Fonts 🆎
- Google fonts
- Font Bundles
- Behance
- Dafont
- Font Squirrel
- Abstract Fonts
- 1001 Fonts
1️⃣1️⃣ Photos 📷
- Unsplash
- Pixabay
- PicJumbo
- IM Free
- Pexels
- Flickr
- Gratisography
- Stock Up
- Cupcake
- Adobe Stock
- Icons8
- Rgbstock
- Pikwizard
- Stocksnap
- Shutterstock
- Freestocks
1️⃣2️⃣ Testing 🧪
- Pingdom
- Website Speed Test
- SEO Site Checkup
- Uptrends
- Dotcom-Tools
- GTmetrix
- WebPageTest
- Dareboost
- SEO tools
- Nibbler
- BrowserStack
1️⃣3️⃣ Hosting 🌐
- Github pages
- Netlify
- Firebase
- AWS
- Vercel
- Heroku
1️⃣4️⃣ JavaScript visual libraries
- Chart.js
- D3.js
- React-vis
- Three.js
- Victory
- Chartkick
- Google Charts
- Flexmonster
- ApexCharts
- Echarts
- Frappe Charts
- ReCharts
1️⃣5️⃣ CSS generators
- coolbackgrounds .io
- css3buttongenerator .com
- neumorphism .io
- glassmorphism .com
- css3generator .com
- Fancy-border-radius
- bennettfeely .com/clippy
- cssgradient .io
- blobmaker .app
- getwaves .io
- cssgenerator .org
- csssbuttongenerator .com
- svgator .com
- cssbuttoncreator .com
- cssgenerators .net
- svgbackgrounds .com
- bgjar .com
- cssboxshadow .com
- css3generator .com
- cssfiltergenerator .com
- neumorphic .design
1️⃣6️⃣ Code snippets
- Codepen
- Codesandbox
- CSS-Tricks
- Hakim .se
- Code My UI
- CreativesFeed
- Bootsnipp
- 30 seconds of code
- 30 Seconds of CSS
- Stackoverflow
- Code to go
- Tweetsnippet
- GitHub
- W3 Schools
- EnjoyCSS
- Web Code Tool
1️⃣7️⃣ Interview preparation
- CodeChef
- HackerEarth
- LeetCode
- HackerRank
- Interview Cake
- InterviewBuddy
- glassdoor
- AlgoExpert
- interviewing .io
- Interview camp
- Coderbyte
- InterviewBit
- GeeksForGeeks
- AmbitionBox
1️⃣8️⃣ Chrome extensions
- Wappalyzrer
- CSS Scan
- Marmoset
- Pesticide
- Ghostery
- HTML Validator
- Keyframes
- ColorZilla
- Page Ruler
- UX Check
- Checkbot
- LambdaTest
- JSONView
1️⃣9️⃣ Apply for internships
- angel .co
- indeed .com
- chegg .com
- letsintern .com
- perfectintern .com
- remoteok .io
- nodesk .io
- remoteinternships .com
- internhq .com
1️⃣ Online learning platforms 📘
- Udemy
- FreeCodeCamp
- Treehouse
- Frontend masters
- Coursera
- Traversy media
- SoloLearn
- Codecademy
- Udacity
- Alison
- Code college
- LinkedIn Learning
- Skillshare
- EdX
2️⃣ Editors and share code snippets ✍🏻
- PlayCode
- JSFiddle
- CodePen
- StackBlitz
- JSBin
- Codesandbox
- Codeinterview .io
- godbolt .org
- wandbox .org
- carbon .now.sh
- pastebin .com
- ideone .com
- ide .judge0.com
3️⃣ Documentations and notes 📄
- w3 schools
- mdn
- Devdocs
- geeksforgeeks
- tutorialspoint
- javapoint
4️⃣ Competitive programming 💻
- CodeChef
- HackerEarth
- HackerRank
- AlgoExpert
- LeetCode
- TopCoder
- Codewars
- Codeforces
- Coderbyte
- Exercism
5️⃣ Learn by playing game 🎮
- Grid garden
- Flexbox defense
- Codecombat
- Unfold
- Ruby warrior
- Screeps
- coding game
- CodeMonkey
- CSS diner
- Flexbox froggy
- Check IO
- Cyber-dojo
- Untrusted
6️⃣ Colors 🎨
- Colorhunt
- Paletto
- Design Seeds
- Coolors
- Bootflat
- 0 to 255
- uiGradients
- BrandColors
- Image color picker
- Colour Lovers
- WebGradients
- Egg gradient
- Gradient Hunt
- Color-hex
- FlatUIColors
- CSS gradients
7️⃣ Background
- Repeat-X Repeat-Y
- Texture King
- Pattern8
- Subtle Patterns
- Patternico
- BG Patterns
- Lost and Taken
- Freepik
- Cool backgrounds
- BG generator
8️⃣ Icons ♠
- Icons8
- Captain Icon
- Iconmonstr
- Linear Icons
- Pixeden
- Perfect Icons
- Font Awesome
- flaticon
- Fontello
- The Noun Project
- Endless Icons
- Round Icons
- Iconfinder
- Freeicons
- Icon-icons
- Findicons
9️⃣ Illustrations
- Undraw
- Freepik
- IRA design
- DrawKit
- Absurd Illustrations
- Handz
- freeillustrations .xyz
- Freebie Supply
- ManyPixels
- Vivid.js
- Humaaans
- Open Doodles
- Icons8
- Glazestock
- Paper illustrations
- illlustrations .co
- isometric .online
🔟 Fonts 🆎
- Google fonts
- Font Bundles
- Behance
- Dafont
- Font Squirrel
- Abstract Fonts
- 1001 Fonts
1️⃣1️⃣ Photos 📷
- Unsplash
- Pixabay
- PicJumbo
- IM Free
- Pexels
- Flickr
- Gratisography
- Stock Up
- Cupcake
- Adobe Stock
- Icons8
- Rgbstock
- Pikwizard
- Stocksnap
- Shutterstock
- Freestocks
1️⃣2️⃣ Testing 🧪
- Pingdom
- Website Speed Test
- SEO Site Checkup
- Uptrends
- Dotcom-Tools
- GTmetrix
- WebPageTest
- Dareboost
- SEO tools
- Nibbler
- BrowserStack
1️⃣3️⃣ Hosting 🌐
- Github pages
- Netlify
- Firebase
- AWS
- Vercel
- Heroku
1️⃣4️⃣ JavaScript visual libraries
- Chart.js
- D3.js
- React-vis
- Three.js
- Victory
- Chartkick
- Google Charts
- Flexmonster
- ApexCharts
- Echarts
- Frappe Charts
- ReCharts
1️⃣5️⃣ CSS generators
- coolbackgrounds .io
- css3buttongenerator .com
- neumorphism .io
- glassmorphism .com
- css3generator .com
- Fancy-border-radius
- bennettfeely .com/clippy
- cssgradient .io
- blobmaker .app
- getwaves .io
- cssgenerator .org
- csssbuttongenerator .com
- svgator .com
- cssbuttoncreator .com
- cssgenerators .net
- svgbackgrounds .com
- bgjar .com
- cssboxshadow .com
- css3generator .com
- cssfiltergenerator .com
- neumorphic .design
1️⃣6️⃣ Code snippets
- Codepen
- Codesandbox
- CSS-Tricks
- Hakim .se
- Code My UI
- CreativesFeed
- Bootsnipp
- 30 seconds of code
- 30 Seconds of CSS
- Stackoverflow
- Code to go
- Tweetsnippet
- GitHub
- W3 Schools
- EnjoyCSS
- Web Code Tool
1️⃣7️⃣ Interview preparation
- CodeChef
- HackerEarth
- LeetCode
- HackerRank
- Interview Cake
- InterviewBuddy
- glassdoor
- AlgoExpert
- interviewing .io
- Interview camp
- Coderbyte
- InterviewBit
- GeeksForGeeks
- AmbitionBox
1️⃣8️⃣ Chrome extensions
- Wappalyzrer
- CSS Scan
- Marmoset
- Pesticide
- Ghostery
- HTML Validator
- Keyframes
- ColorZilla
- Page Ruler
- UX Check
- Checkbot
- LambdaTest
- JSONView
1️⃣9️⃣ Apply for internships
- angel .co
- indeed .com
- chegg .com
- letsintern .com
- perfectintern .com
- remoteok .io
- nodesk .io
- remoteinternships .com
- internhq .com