โœ“ Final Step

Embed Your Animated Mascot

Your mascot is ready! Here's everything you need to add it to your website. We deliver multiple formats so it works everywhere.

What You Receive

Every order includes these files:

๐ŸŽฌ

mascot-transparent.webm

Best quality, transparent background. Works in Chrome, Firefox, Edge, Safari 16.4+

๐Ÿ“น

mascot.mp4

Universal fallback for older browsers. Solid background.

๐Ÿ–ผ๏ธ

mascot.gif

Animated preview for email signatures, social media, etc.

๐Ÿ“ท

mascot.png

Static image for thumbnails, favicons, print materials.

Basic HTML Embed

The simplest way to add your mascot to any HTML page:

<video autoplay loop muted playsinline>
  <source src="/mascot-transparent.webm" type="video/webm">
  <source src="/mascot.mp4" type="video/mp4">
  <img src="/mascot.gif" alt="Mascot">
</video>HTML
๐Ÿ’ก Why multiple sources? Browsers try each source in order. WebM plays with transparency where supported, MP4 is the fallback, and GIF handles ancient browsers.

Styled Example

Add some CSS to control size and positioning:

<style>
.mascot {
  width: 200px;
  height: 200px;
  object-fit: contain;
  /* Float in corner */
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
}
</style>

<video class="mascot" autoplay loop muted playsinline>
  <source src="/mascot-transparent.webm" type="video/webm">
  <source src="/mascot.mp4" type="video/mp4">
</video>HTML + CSS

โ†‘ Live demo: This mascot floats on any background

React / Next.js

export function Mascot() {
  return (
    <video 
      autoPlay 
      loop 
      muted 
      playsInline
      className="w-48 h-48 object-contain"
    >
      <source src="/mascot-transparent.webm" type="video/webm" />
      <source src="/mascot.mp4" type="video/mp4" />
    </video>
  );
}React

WordPress

For WordPress sites, you can:

  1. Upload all files to your Media Library
  2. Use the Custom HTML block and paste the embed code
  3. Or use a plugin like "Video Embed & Thumbnail Generator"

Webflow / Framer / Squarespace

Most no-code builders support custom HTML embeds:

  1. Upload video files to your project assets
  2. Add an "Embed" or "Custom Code" block
  3. Paste the HTML with your asset URLs

Performance Tips

Browser Support

Ready for Your Own Mascot?

From your logo to animated character in 24 hours. Starting at $9.99.

Get Started โ†’