KRKrishnanand Royinknking.hashnode.dev·Dec 18, 2022 · 9 min readJavaScript Array and its MethodsWhy do we need an array in javaScript Let’s consider the situation where we need to store 50 numbers or need to store the name of 50 students. If we use simple variable or data type concept then we need 50 variables to store the data. something like ...00
KRKrishnanand Royinknking.hashnode.dev·Dec 10, 2022 · 5 min readHTML Input ElementsWhat is HTML Input Element HTML < input > Element is an input control which is used to create web-based form in order to accept data from the user. generally input element is used within the < form > Tag. Syntax : - < input type="value" name=" " ......00
KRKrishnanand Royinknking.hashnode.dev·Nov 23, 2022 · 9 min readCSS FlexboxWhat is Flexbox Flexbox Layout provide a more efficient way to lay out, align and distribute space among items in a container, even when their size is unknown and/or dynamic. There are 2 main components of the Flexbox: Flex Container( parent ) -> wh...00
KRKrishnanand Royinknking.hashnode.dev·Nov 21, 2022 · 8 min readIntroduction of CSS and CSS SelectorWhat is CSS Cascading Style Sheets (CSS) is a stylesheet language used to style and layout web pages. With CSS, you can control the color, font, the size of text, the spacing between elements, how elements are positioned and laid out, what background...00
KRKrishnanand Royinknking.hashnode.dev·Nov 20, 2022 · 5 min readIntroduction of HTMLWhat is HTML HTML(Hyper Text Markup Language) is a markup language which is used to create a web page and web applications. with the help of HTML we can structure web page and its content. For example, content of web could be structured within a set ...00