Front-end developer roadmap, scratch to crack a job and internship馃敟HTML : Hindi ( prafred ) > https://youtu.be/HcOc7P5BMi4?si=tCzAWQJZZ833zKlz (2hr) english > https://youtu.be/HD13eq_Pmp8?si=ebuMkbqNc-l4fGZ6 (1hr) In this playlist, you find all the topics but in case you want to go fast and only learn the necessary ...Jul 21, 2024路3 min read
HTML input elementsWhy do we need input elements HTML input elements are used to accept user input in a web form. They allow users to interact with a webpage and provide information to the website owner or developer. There are several different types of input elements,...Dec 23, 2022路2 min read
HTML elementsHTML elements are the building blocks of HTML documents and are used to define the structure and content of a web page. They are represented by tags in the HTML code and can contain other HTML elements, text, and attributes. There are many different...Dec 23, 2022路2 min read
CSS Box ModelThe CSS box model is a way of representing the layout of HTML elements on a web page. It consists of the following parts: Margins: The space outside of the element's border Borders: A border around the element Padding: The space between the elemen...Dec 23, 2022路2 min read
Media Queries in CSSintro Media queries used to make sites responsive. Media queries allow you to apply CSS styles depending on various devices Responsive Design: If a website design looks good on all devices ( big monitors, laptops, tablets, and mobiles ) then that kin...Dec 22, 2022路2 min read
CSS FlexBoxWhy use FlexBox Flexbox is a layout model that allows elements to align and distribute space within a container. Using flexible widths and heights, elements can be aligned to fill a space or distribute space between elements, which makes it a great t...Dec 22, 2022路2 min read
Use TailWindCSS in your react projectTailWind is just a lifesaver when we use any frontend tech like react.js, anguler.js, etc. Implementing tailwind in react project is super easy, Just follow this 3 steps 1 ) Install tailwind CSS First, open your terminal and run npm install -D tailwi...Nov 28, 2022路1 min read