Before uploading images to a practice library in PracticeBeat, please ensure your files meet the following criteria:
dental-waiting-room.png instead of IMG_9876.pngUse the tool below if you would like assistance naming and resizing images
| Image | Original | SEO Name (Edit here) |
|---|
After uploading your images to a practice library, the platform generates two unique links: a WebP URL (for performance) and a Fallback Image URL (PNG or JPEG).
Use those links and the templates below to implement these images via CSS or HTML.
.your-element {
background-image: url("https://storage.googleapis.com/treatspace-prod-media/image.webp");
background-repeat: no-repeat;
background-size: cover;
}<img alt="image description" class="img-fluid" loading="lazy" onerror="this.onerror=null;this.src='https://storage.googleapis.com/treatspace-prod-media/fallback-image.jpeg'" src="https://storage.googleapis.com/treatspace-prod-media/main-image.webp">Use the tool below if you would like assistance generating CSS code for background images or HTML code for image elements