Array Methods In JavaScriptArray It is the collection of elements of different data types. It is of dynamic size. we can access the elements of array by indexes. The index start from 0 to size_of_array - 1. Example: let arr=[1,2,3,"Hello","Hai"] Output: [1,2,3,'Hello','H...Feb 27, 2024·2 min read
Input Elements in HTMLInput elements are special building blocks in html which are used to create interactive fields in the webpage. They are used to gather information like email, name and phone number from the user. Lets discuss one by one and finally with an example wh...Jan 26, 2024·4 min read
Introduction To HTML ElementsThe elements are building blocks that are used to create and structure the content of the webpage. Each element represents different part of the content such as paragraphs, heading and images. Lets discuss some of the key elements Structural Element...Jan 25, 2024·3 min read
CSS FlexboxWhat is Flexbox? Flexbox is like a friendly helper for organizing and arranging things on a webpage, it makes our work easier for not only creating layouts but only looks good on different devices as well. Flex Container Flex container is like a box...Jan 23, 2024·3 min read
Selectors in CSSIn CSS selectors are patterns that are used to select and style one or more elements in HTML Document. Lets discuss some of the selectors in detail using an example Universal Selector This selector is used to select everything. I mean everything on H...Jan 11, 2024·6 min read
Introduction To Web And HTMLWeb Server A web server is a piece of software which serves web content. When we start a web server it will wait for the incoming requests, it listens to the network port. There are a total of 65,535 ports that software running on the computer can co...Dec 27, 2022·3 min read