How to get started with Web Development in 2022?
Web Development is one of the most famous career options that a lot of people are interested in today. It involves, as the name suggests, creation of websites mainly using HTML, CSS, and JS. These websites can be of different genres such as:
- Informative
- Utility
- E-commerce
- Portfolio
- Business
- Blogging
- Educational
- Charity, etc.
First steps...
HTML
To get stared with Web Dev, firstly you'll need to learn HTML, which stands for Hypertext Markup Language. HTML allows you to write out of the basic layout of a website. Here is a sample HTML file just so you know how does Web Development look and feel like:
Output:
CSS
The above website we just created looks very plain and is not appealing to the eye. You may want to change the font, add some formatting, or do some other things like adding a border to the page. You can do all of this using CSS. CSS stands for Cascading Style Sheet. It is used to format the HTML code.
So if we use some basic CSS to modify the above website we just made:
Output:
JS
The last component of Web Development is JavaScript, often abbreviated as JS. Now let's add some JS to the mix:
Output:
After clicking the button:
You can see that JS can give extraordinary behaviors to your website. Again, don't worry if the code is confusing, trust me I was never more confused than at the time I first got into programming!
Where do I learn HTML, CSS and JS from?
From the above examples, it is clear how much can be done with HTML, CSS, and JS if used properly. To get started, you can refer to the following tutorials that have been verified by freecodecamp.org:
And that's it! Next is your determination, handwork and practice and no one would be able stop you from becoming a world-class web developer!
Hope you found this helpful. Thank you for reading!
Comments
Post a Comment