With our new Embed feature, currently still in beta, you can now share your games outside of the HypeHype app and let players enjoy your games on the web.
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.
Generating your games embed codes could couldn't be simplier:
1. Open your HypeHype game on feed
2. Click "Share"
3. Select "Embed" to copy the code
Your embed code will now be copied to your devices clipboard.
This contains both the standard "iframe" embed code used for websites and blogs along with the itch.io specific code to save as an .html file.
Be sure to only copy the section that is needed for your specify use case.
It's possible to do this on your mobile device by downloading a code editor app from the iOS or Google Play store.
Search for "HTML editor" on your app store and install an app designed for writing code on mobile, like TrebEdit, Textastic, or QuickEdit.
This will vary depending on if you're on a Mac or Windows machine, but the process is essentially the same.
Paste the exported code into your text editor of choice and ensure you save or export the file as an .html file. Often simply naming your file with the .html extension will create the file in the correct format.
EG:
File > Save As > My_Game_Name.html
Example Website 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:
Create an HTML file that contains the iframe snippet in its body.
Example code for itch.io
Please Note: Use the specific code generated for your game, this is just an example and will not display your own game.
<!-- 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>
Enter all the required game details as per their on screen instructions such as game name and game description.
Upload the single .HTML file that includes your iframe code.
Once your .HTML file is uploaded, you can set the embed dimensions and other optimal settings.
For Landscape Games we recommend starting with:
Width = 1024 / Height = 768
For Portrait Games we recommend starting with:**
Width = 450 / Height = 800
We recommend experimenting with these sizes to get your desired result.*
itch.io allows you to add custom assets to your game page to help market your game and enhance the overall appeal. This is important to take the time to really show off what your game has to offer potential players.
Think of this as your games Thumbnail, much like in HypeHype. You can easily use the functionality inside HypeHype to save your games thumbnail to you device.
PRO TIP: When taking a thumbnail for itch.io using the HypeHype functionality, position your most important information towards the bottom of the screenshot so that it's cropped correctly once uploaded.
Using the same process as above, take a series of 3 to 5 thumbnails to show off your games most exciting visuals. If you're on a desktop, these can be created using basic photo editting software or graphics packages.
We recommend the following Screenshot Dimensions:
Landscape: 1920x1080
Portrait: 1080x1920
If you do have a trailer for your game, it's a great idea to upload this to youtube and share the link in your page too!
Consider recording so game footage when playing your game. If a picture or screenshot is worth a thousand words, then a video is considered worth significantly more, as it can convey a story, emotions, and movement making it much more impactful than a single image.
Once you’re satisfied with how everything is looking, make your project Public and Save.
Everyone visiting your itch.io game page can play the embedded HypeHype content directly in their browser.
For further details on HTML files: