Journey start to become a web developer and Learn HTML - day 1 | 90 Day Code
Journey start to become a web developer and Learn HTML - day 1 | 90 Day Code
- It will take 6-7 hours every day (90 day)
- Must be given priority than all other works
- Be unsocial and sacrifice all other enjoyable issue in this 90 day.
![]() |
3 main language to build a website |
How to become a Front end Web Developer in four steps:
- Learn HTML, CSS, Bootstrap, JavaScript
- Learn a Framework: React
- Learn version control system: Git
- Learn CSS preprocessors: SASS, JS preprocessors: TypeScript
![]() |
frontend web development skills |
How to become a back end developer:
- Understanding of front end web technologies: HTML, CSS, JavaScript
- Choose a programming language: 👉JavaScript👈 or Python or PHP
- Learn a framework: node js, express js, django (python framework)
- Learn git and github
- Learn Firebase, firebase authentication,
- Databases: SQL and Non-SQL (MongoDB)
- Learn about API
What can you do with JavaScript?
- make a web apps
- make native apps: desktop, andorid, ios
- make server apps with node js
What is inspring you to become a web developer?
- Work From Home
- Great Salary
- Work for Yourself(freelancing)
There are lot of resources ready to help you. Remember those name:
- stackoverflow
- css tricks
- freecodecamp
- w3schools
When you are stuck on coding problem, Take the time to read the error, copy it and search google to find the solution.
Install VS code
===========
1. Search google - 'download VS code and install it.
2. Memorise shortcuts for use VS code
Install node
============
1. download node and install it
2. node --version
Install git scm and create github account
============================
1. download git and install
2. git --version
3. create a github account
Learn HTML as a beginner
- Open VS Code
- Create New file (ctrl + N)
- ctrl+s (.html)
HTML - hypertext markup language
- hypertext - it means it links to another document(page, audio, video, text)
- markup - it means there are some special charecter sign. <> </>
Some HTML Tags
<b></b> or <strong></strong> | this tag used for to bold text. Used strong tag rather than b tag. strong tag help SEO. It is a semantic tag. |
<h1><h1> <h2></h2> <h3></h3> <h4></h4> <h5></h5> <h6></h6> |
h1 is the largest heading tag and means it's the most important text on the page. |
<a href="".></a> | it is called ancor tag, link to go other page or document. Here href is a html attribute, that's set destination. Attribute means Extra information add in html tag.
|
<img src=""></img> |
src is a attribute |
<ol> <li><li> <li><li> </ol> |
ol means order list. li means list item. ol is container tag.
|
<ul> <li><li> <li><li> </ul> |
To show unordered list in your website. |
<button>Click me</button> | |
<input type="text"/> | There are many types of input.
|
<span></span> | |
<div></div> | div tag is a container tag. Most used in website. Group other elements as a parent tag. |
<section></section> | |
<title>about</title> | title tag is used for page name and it's shows on tab. It is very important for SEO. |
<body></body> | body tag contains everything we see in a website |
<meta></meta> | meta tag help a page for SEO. |
HTML Syntax:
<!DOCTYPE html>
<html>
<head>
<title>document</title>
</head>
<body>
</body>
<footer>
</footer>
</html>
Time is very short to prove yourself. - 90 Day Code
Comments
Post a Comment