Physics, asked by deepikaSECRET, 11 months ago

Construction of Human eye chapter ​

Answers

Answered by ayushgaur301
1

Explanation:

1

Upload your image. There are many free image hosting services, such as Picasa Web Albums, Imgur, Flickr, or Photobucket. Read the terms carefully. Some services will reduce your image quality, or take down your image if too many people view it (since this uses up the host's bandwidth)

Some blog-hosting services let you upload images using the blog administrator tools.

If you have a paid web host, upload the image to your own site using an FTP service. Creating an "images" directory is recommended to keep your files organized.[1]

If you want to use an image on another website, ask the creator for permission. If she grants it, download the image, then upload the image to an image hosting site.

2

Open your HTML file. Open the HTML document for the web page where the image will be displayed.

If you are trying to insert an image on a forum, you can type directly in the post. Many forums use a custom system instead of HTML. Ask for help from other forum-goers if this doesn't work

Begin with the img tag. Find the point in your HTML body where you'd like to insert an image. Write the tag <img> here. This is an empty tag, meaning it stands alone, with no closing tag. Everything you need to display your image will go inside the two angle brackets.

<img>

4

Find the URL of your image. Visit the web page where your image is hosted. Right-click the image (control-click on Mac) and select "Copy Image Location." You can also click "View Image" to see the image alone on a page, then copy the URL in your address bar.

If you uploaded the image to an images directory in your own website, link to it with /images/yourfilenamehere. If this doesn't work, the images directory is probably inside another folder. Move it up to the root directory.

5

Place the URL in a src attribute. As you may already know, HTML attributes go inside a tag to modify it. The src attribute is short for "source," and tells the browser where to look to find the image. Write src=" " and paste the image URL in between the quotation marks. Here's an example:

<img src=...

Similar questions