More about HTML | Images in HTML
Images in HTML Images are used to improve the appearance of a web page. To add an image in HTML we have to use the <img> tag. <img> tag has two required attributes. src attribu…
Images in HTML Images are used to improve the appearance of a web page. To add an image in HTML we have to use the <img> tag. <img> tag has two required attributes. src attribu…
There are 3 different types of list elements in HTML 1) Ordered List <ol>…</ol> - specifies ordered list (using a numbers for each) <li> - specifies each list item. The…
HTML Text Formatting Elements Text formatting is an essential aspect when it comes to designing professional web pages. There can be requirements to add bold text, italic text, text in big…
Heading, Header, and Footer Tags HTML headings are titles or subtitles that we want to display on a webpage. HTML headings are defined with the <h1> to <h6> tags. <h1> …