How to Properly Reference a Picture from a Website: Step-by-Step Guide

Learn how to reference pictures from websites using Markdown and HTML with correct attribution and captions for ethical content use.

Published

Video transcript

To reference a picture from a website, include the image with appropriate attribution. For example: ![Alt Text](URL) in Markdown. Ensure to add a caption crediting the source or use HTML <img src='URL' alt='description'> with a caption.

Questions and answers

  1. What is the correct way to reference an image from a website?

    The correct way is to include the image with appropriate attribution, usually by adding a caption crediting the source, and using proper formatting such as Markdown or HTML.

  2. How do I reference an image using Markdown?

    Use the syntax ![Alt Text](URL) and include a caption or credit near the image to properly attribute the source.

  3. Can I use HTML to insert and credit website images?

    Yes, you can use an HTML <img> tag with the src attribute pointing to the image URL, along with an alt description and a caption for attribution.