HTML
Get started with integrating Mosaic into your static HTML project.
Add meta tags in the <head> section
<!DOCTYPE html>
<html lang="en">
<head>
<meta property="og:title" content="Your Page Title" />
<meta
property="og:image"
content="https://mosaicimg.com/use?url=yourwebsite.com/your_slug"
/>
<meta property="og:type" content="website" />
<meta name="twitter:card" content="summary_large_image" />
<meta
name="twitter:image"
content="https://mosaicimg.com/use?url=yourwebsite.com/your_slug"
/>
</head>
<body>
<!-- Your content here -->
</body>
</html>