© 2023 Hashnode
#iwritecode-hiteshchoudhary-anuragtiwari-html
Let's Explore the concept of a Web Server. A web server can exist as either hardware or software. On the hardware side, a web server stores web server software and web components such as HTML document…
💥 Preface : In this article first, we will learn about some common terms which come into this article and then we will add React to our existing project and make it production ready. 🎯Basic terms : …
🙂 Preface: Hello everyone, after a long time I am starting a new series for react. This series will be covering react basics and some intermediate topics which I am going to learn in the next few day…
Media query allows to apply styling based on general device type(like mobile, laptop, computers) or based on screen resolution or viewport width general syntax @media [all,not,only] [mediatype] logicaloperator(and,not,or) [media feature exp…
What is Position? property sets how an element is positioned in the document, top, right, bottom and left property determines the final location in the document we have five different ways to declare positions are: position: absolute; …
Audio the <audio> is an HTML element to embed audio content into documents, it may contain one or more audio sources represented using the src attribute or source tag, and the browser will choose the suitable one It supports .mp3, .wav and …
What is Flex: Flexbox layout aims to provide an efficient way to layout, align and distribute spaces among items in the container even when item size is unknown or dynamic An important property to make a container or parent object into Flex…
Universal Selector(*for whole document): In the universal selector, we use the * symbol. star (*) means the whole document. The universal selector (*) selects all HTML elements on the page. Syntax: …
What is CSS? CSS - Cascading Style Sheet is a stylesheet language used to describe the presentation of a document written in HTML Let's check how to write CSS and its usage, first let us see how to write CSS as inline property to an element…
Lists refer to collections of items and are one of the best ways to produce content in a structured format, we encounter lists on daily basis such as grocery shopping items, to-do lists, hotel menus etc. Three types of lists are Ordered li…