JavaScript Interview Questions Part-1Hey Reader , I am a Front-end Developer and recently , i have been looking for a job switch and after giving interviews for various companies . I collected a few questions that were frequently asked and helped me to ace my JS interviews. Q1. What are...Jun 9, 2023·13 min read
CSS Media QueriesMedia query is a technique that is introduced in CSS3 . It is used to make responsive webpages which helps targetting different types of devices. It uses the @media rule to include a block of CSS properties only if a certain condition is true. Syntax...Dec 9, 2022·1 min read
FLEXBOX in cssFlex layout is used to give the container the ability to alter its item's width/height (and order) to best fill the available space. A flex container expands items to fill available free space or shrinks them to prevent overflow, the flexbox layout i...Dec 9, 2022·3 min read
CSS SelectorsWhat are CSS selectors? CSS selectors define the pattern to select elements to which a set of CSS rules are then applied. Types of CSS selector Universal Selectors A universal selector is used where we need to target the whole webpage. Optionally, ...Dec 6, 2022·2 min read
Introduction to web and htmlWeb servers are the software that is used to host the services. It takes a request from a user via HTTP and gives a response accordingly. There are two types of server Local server - one of them is a live server by "Ritwik day" which helps the progr...Nov 23, 2022·2 min read