Let say you wanna embed some image onto your webpage. So how would you do that?
It's easy
1. Open Google 2. Search "embed image in html" 3. Quick read about it on W3 or mdn 4. Now you know how to display image in a webpage
(9 / 13)
As you can see first two results of Google search are W3 and MDN. You can open anyone of them and give it a quick read
Initially it may take some time to find your desired solution but once you get used to it, it all seems easy
(10 / 13)
Same thing applied to CSS and JavaScript. That's how you find your answers of Google. Using docs, article, video doesn't matter as far as you get your answer.
I suggest to develop this habit, it will help you forever
(11 / 13)
In the similar fashion you can start with CSS. Start it with freecodecamp's crash course.
The crash course is good because it gives a quick insight into how things work. But don't depends on it completely
(12 / 13)
I tried to give you a quick way of how to get started with web development.
Time to give it a shot nowπ₯
(13 / 13)
β’ β’ β’
Missing some Tweet in this thread? You can try to
force a refresh
Some important topics of JavaScript before diving into React
A Threadπ§΅
1οΈβ£ ES6 classes
Although new developers are working with functional components, there is a possibility that you may encounter old written class component code. So it can be helpful to learn basic of ES6 class.
2οΈβ£ Basic understanding of var, let and const
You should have the basic understanding of variable declaration. When to use var, let or const. What is the block scope and stuff like that.
for example
var x = 2;
// Here x is 2
{
let x = 4;
// Here x is 4
}
// Here x is 2