AMAbhishek Mauryaindevblog.dev·Feb 7, 2023 · 1 min readBring in ImagesTable of Content Introduction to Images in websites. Uses of images on the website. The basic syntax of the img tag. Attributes Introduction to Images in websites. Images are a common element of web design, and they serve several different purp...00
AMAbhishek Mauryaindevblog.dev·Feb 3, 2023 · 1 min readBlock vs Inline ElementsBlock Elements : A block-level element always begins on a new line, and browsers add a margin (a space) before and after the element by default. A block-level element always occupies the entire available width (stretches out to the left and right as ...00
AMAbhishek Mauryaindevblog.dev·Feb 2, 2023 · 2 min readParent Child and Grouping In HTMLSelectorExampleExample description element elementdiv pSelects all <p> elements inside <div> elements element>elementdiv > pSelects all <p> elements where the parent is an <div> element element+elementdiv + pSelects the first <p> element that is...00
AMAbhishek Mauryaindevblog.dev·Feb 1, 2023 · 1 min readHTML Entities● Some characters are reserved in HTML ● If you use the less than (<) or greater than (>) signs in your text, the browser might mix them with tags. To display a less than sign (<) we must write: < or < ● Character entities are used to display reserve...00
AMAbhishek Mauryaindevblog.dev·Jan 31, 2023 · 2 min readComments, Tags v/s Elements and AttributeIntroduction to HTML Comments HTML comments are a way to add notes and explanations to your HTML code without them being visible to users when the page is rendered in a web browser. They are used to provide context and documentation for the code and ...00