A downloadable game

<!DOCTYPE html> <html> <head> <title>Search Box</title> </head> <body> <form id="searchForm" action="https://www.google.com/search" method="GET"> <input type="text" id="searchInput" name="q" placeholder="Search..."> <input type="submit" value="Search"> </form> <script> document.getElementById('searchForm').addEventListener('submit', function(e) { e.preventDefault(); var searchQuery = document.getElementById('searchInput').value; var encodedSearchQuery = encodeURIComponent(searchQuery); var searchUrl = 'https://www.google.com/search?q=' + encodedSearchQuery; window.location.href = searchUrl; }); </script> </body> </html>

Download

Download
Driving Game.rar 104 MB

Leave a comment

Log in with itch.io to leave a comment.