Flexbox in CSSSince flexbox is a whole module and not a single property, it involves a lot of things including its whole set of properties. Some of them are meant to be set on the container (parent element, known as “flex container”) whereas the others are meant t...Dec 9, 2022·9 min read
Audio and Video Tagsaudio tag The audio HTML element is used to embed sound content in the website. It may contain one or more audio sources, represented using the src attribute or the element: the browser will choose the most suitable one. Attributes autoplay A Boolea...Dec 9, 2022·4 min read
Input ElementThe HTML element is used to create interactive controls for web-based forms in order to accept data from the user; a wide variety of types of input data and control widgets are available, depending on the device and user agent. The element is one o...Dec 7, 2022·1 min read
Web ServerA web server is a software and hardware that uses HTTP (Hypertext Transfer Protocol) and other protocols to respond to client requests made over the World Wide Web. The main job of a web server is to display website content through storing, processin...Dec 7, 2022·5 min read
Selectors in CSSWhat are CSS selectors? selector defines the pattern to select HTML elements to style those selected elements. there are different types of selectors in CSS mentioned below. Universal selector Type selector Class selector ID selector Attribute selec...Nov 21, 2022·4 min read
Commonly used HTML tags<!DOCTYPE html> Actually, DOCTYPE is not an HTML tag but it is important to know about this because this tells the browser which version of HTML you are using. like any other programing language, HTML has also evolved. so in previous versions of HTML...Nov 19, 2022·3 min read