👤

How do you create a URL for an image using an Online Image Hosting and how you can upload your photos online using different online image hosting?​

Sagot :

Answer:

In HTML, images are defined with the <img> tag.

The <img> tag is empty, it contains attributes only, and does not have a closing tag.

The src attribute specifies the URL (web address) of the image:

<img src="url here" alt="some_text" style="width:widthpx;height:heightpx;">

Example

<!DOCTYPE html>

<html>

<body>

<h1>Brainly Answer</h1>

<img src="brainly.jpg" alt="PicturePicture" style="width:350px;height :200px;">

</body>

</html>