MTmayur tiwariinawesometiwariji.hashnode.dev·Jan 24, 2023 · 2 min readGithubWhat is github? Github is a repository hosting platform which uses version control system. Now what is version control? Version control helps an organisation and it's individual developers to track and manage changes to a code through branchinh and m...00
MTmayur tiwariinawesometiwariji.hashnode.dev·Dec 18, 2022 · 1 min readArray and Array methodsAn array is collection of items.An array can hold many values under a single name, and you can access the values by referring to an index number. for example lets consider an array 'names' let names = ['billu','maaru','mayank','mayur','tillu',]; Arra...00
MTmayur tiwariinawesometiwariji.hashnode.dev·Nov 26, 2022 · 1 min readCss media query**Media query **is used to make the webpage more responsive. It fires up when a certain set of conditions given by us become true. Media query helps us to make a website which runs equally efficiently on mobile, tablet,laptop or a big screen computer...00
MTmayur tiwariinawesometiwariji.hashnode.dev·Nov 25, 2022 · 1 min readCss GridCss grid helps us to place our content inside a grid type layout. How to use-just use following code(for a parent div with class container) - .container{ display: grid; } PROPERTIES- 1.ROW AND COLUMN-We have to specify how many rows and columns w...00
MTmayur tiwariinawesometiwariji.hashnode.dev·Nov 24, 2022 · 1 min readcss positionscss position properties help us to position/place elements in a webpage in a variety of different ways.following are css position properties- 1.STATIC-this is the default position of the elements.If no other position property is applied,the elements ...01