HTML Elements
HTML Elements are the building block of a webpage. We use HTML to define the structure of our HTML document. In this chapter, we will learn different types of HTML and how to create HTML elements on our webpages.
Html Elements: <p> tag - Paragraph
Anything between the <p> and </p> tags will be considered as a paragraph by the browser. <p> is a block-level element, the Browse...
Date: 2022-11-01 01:52:12
HTML Heading Titles: <h1><h2><h3><h4><h5><h6>
To declare a title in an HTML document, we use the title elements: <h1><h2><h3><h4><h5><h6>. The highest l...
Date: 2022-11-01 02:17:37
HTML Element: Image <img>
To insert an image into a page we must use the HTML <img> element, it does not have a completion mark (similar to the <br> tag). Genera...
Date: 2022-11-01 03:39:45
HTML element: Span
The span tag is an inline element, that is, when added to the page, it is inserted laterally after the other components, unlike divs...
Date: 2022-11-02 21:58:06