The _ image is displayed when the web page is opened and is
inserted within a line of text.
what is the answer?
Answers
Answer:
Social equality is a state of affairs in which all people within a specific society have the equal rights, liberties, and status, possibly including civil rights, freedom of speech, property rights, and equal access to certain social goods and social services.
Explanation:
Answer:
The home page image is displayed when the web page is opened and is inserted within a line of text.
Explanation:
- When you open a web page, the first thing that is loaded on the browser is the home page.
- The home page of the website may contain images, text, contact information, and links to the parts of the website.
- Images can be inserted into the webpage by using the <img > tag of the HTML.
SYNTAX:
<img src = "URL of the image" height= "" width = "" alt=""/>
src: The src attribute contain the source of the image that can either be present locally on the computer or somewhere on the internet.
height: It specifies the height of the image. It can be in pixels or percentages or em.
width: Width specifies the width of the image. It can be in pixels or percentages or em.
alt: alt attribute contains the information about the image. It is useful when the browser failed to load the image.
#SPJ3