How do I add an image to my profile HTML?
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
alttext 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.
FAQ Categories:
Profile HTML & Icons
FAQ Type:
None