How do I add an image to my profile HTML?

September 9, 2026

Use an <img> tag with a public image address. The image must already be hosted at a normal web URL.

Example

<img src="https://example.com/my-photo.jpg" alt="Portrait of me in my studio" width="640" height="480">

Supported image attributes are src, alt, width, and height.

  • Use an https:// image URL that visitors are allowed to view.
  • Always include useful alt text for accessibility.
  • Use width and height to reserve the correct space, but avoid making the image wider than the page.
  • Embedded data: images and unsafe sources are blocked.

Ask in the Help & Support forum

FAQ Categories: Profile HTML & Icons
FAQ Type: None
User Avatar