'Download Link/Button to a game
Recently I made a simple game in Unity and I want to make a website for this project. So my question is: How I can add a download link to my game? (And when I press the link or the button to download the game, a zip file, or an installer)
Solution 1:[1]
You should be able to use:
<form method="get" action="your-game-file.zip">
<button type="submit">Download My Game!</button>
</form>
This simply creates a mini form, and actions the document or file you want when the button is clicked. ;p
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Karl |
