Embedding your game can be part of game promotion. It drives more visibility for you and the game, more traffic and direct plays to your HypeHype games outside HypeHype.
Please note. Embedding is a new feature in beta test.
1. Open your HypeHype game on feed
2. Click "Share"
3. Select "Embed" to copy the code
Example code:
<!-- Use this on your website, blog and more -->
<iframe src="https://embed.hypehype.com/playlist/08f3d5aa51bf0058ca58e7"></iframe>
1. Open Your Website’s HTML
In the HTML of the page or post where you want the HypeHype game to appear, choose the spot where you want the embedded game.
2. Paste the iframe Code
Paste the code you copied from HypeHype directly into your HTML.
3. Adjust Width/Height (Optional)
You can control the size of your embedded HypeHype content by adding width="" or height="" attributes, or style it via CSS.
4. Save and Preview
Once you’re done, save or publish the changes. Then open or refresh your web page to see the embedded HypeHype game in action.
itch.io is an open marketplace for indie creators, focused on independent video games. Here’s how to embed your HypeHype game there:
1. Export embed code to a single HTML file
<!-- Use this on https://itch.io and similar -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>HypeHype - YOUR GAME NAME</title>
<style>
html, body {
margin: 0;
padding: 0;
border: 0;
}
iframe {
width: 100vw;
height: 100vh;
margin: 0;
padding: 0;
position: fixed;
top: 0;
border: 0;
}
</style>
</head>
<body>
<iframe src="https://embed.hypehype.com/playlist/08f3d5aa51bf0058ca58e7"></iframe>
</body>
</html>
2. Upload the HTML File to itch.io
3. Configure the Embed
4. Publish your game
5. For more details