
Browsers and JavaScript are becoming more powerful and more comprehensive. There was a time when any type of game needed Flash. But the stage now is set for powerful HTML5 and WebGL games!
Here are 30 of our favorite games running in all modern browsers and only using web technologies. Enjoy!
HexGL
HexGL is a futuristic, fast-paced racing game built on HTML5, JavaScript and WebGL. You can control a space ship by using your keyboard, a touchscreen device or even a leap motion controller if you have one.
CrossCode
A retro-inspired 2D game set in the distant future. This one is full of great game mechanics such as combos, puzzles, skill trees, quests, items and more.
Bejeweled
The classic Bejeweled game in HTML5 form. This is an official clone and as such it runs and looks perfect. The ultimate time killer.
Gods Will Be Watching
You and your crew have to survive for 40 days in isolation in this creepy (but awesome) game. There are six members of your team including a dog, a psychiatrist and a robot and you have to interact with them the right way to keep them warm, fed and sane.
Swooop
Fly around and collect gems and stars in a beautiful and colorful 3D world.
Entanglement
The point of this game is to create a path as long as possible by placing segments on a grid. You can play alone on one of the many levels or play against friends.
Polycraft
In this awesome 3D game you run around collecting resources, building stuff, completing quests and fighting stuff. Everything about it is polished and it runs perfectly smooth.
2048
A very addictive game that you've probably already played. In 2048 you move numbered tiles around and merge them. Get that elusive 2018 tile to win!
Angry Birds
The (once) popular Angry Birds game in HTML5, so you can play it in your browser.
The Wizard
The Wizard is a turn-based dungeon crawler where you’ll encounter mythical monsters and find marvelous spells. The game features cool combat mechanics and can be quite challenging at times.
Little Alchemy
Start off with the four basic elements and combine them to create the 510 possible combinations.
World's Biggest PAC-MAN
A huge collection of PAC-MAN mazes - probably more then you can beat in your lifetime (this isn't a challenge, please don't try).
And that's the end of our HTML5 game list! They're all fun and have great potential to waste time. Do you have a favorite game?
Background vector created by katemangostar - www.freepik.com

Janeth Kent
Licenciada en Bellas Artes y programadora por pasión. Cuando tengo un rato retoco fotos, edito vídeos y diseño cosas. El resto del tiempo escribo en MA-NO WEB DESIGN AND DEVELOPMENT.
Related Posts
Let's create a Color Picker from scratch with HTML5 Canvas, Javascript and CSS3
HTML5 Canvas is a technology that allows developers to generate real-time graphics and animations using JavaScript. It provides a blank canvas on which graphical elements, such as lines, shapes, images…
How do you stop JavaScript execution for a while: sleep()
A sleep()function is a function that allows you to stop the execution of code for a certain amount of time. Using a function similar to this can be interesting for…
Mastering array sorting in JavaScript: a guide to the sort() function
In this article, I will explain the usage and potential of the sort() function in JavaScript. What does the sort() function do? The sort() function allows you to sort the elements of…
Infinite scrolling with native JavaScript using the Fetch API
I have long wanted to talk about how infinite scroll functionality can be implemented in a list of items that might be on any Web page. Infinite scroll is a technique…
Sorting elements with SortableJS and storing them in localStorage
SortableJS is a JavaScript extension that you will be able to use in your developments to offer your users the possibility to drag and drop elements in order to change…
What is a JWT token and how does it work?
JWT tokens are a standard used to create application access tokens, enabling user authentication in web applications. Specifically, it follows the RFC 7519 standard. What is a JWT token A JWT token…
Template Literals in JavaScript
Template literals, also known as template literals, appeared in JavaScript in its ES6 version, providing a new method of declaring strings using inverted quotes, offering several new and improved possibilities. About…
How to use the endsWith method in JavaScript
In this short tutorial, we are going to see what the endsWith method, introduced in JavaScript ES6, is and how it is used with strings in JavaScript. The endsWith method is…
Loading images by resolution with HTML5
Normally the way to load images in HTML is through the img element to which we pass as a parameter the URL of the image to load. But since HTML5…
What are javascript symbols and how can they help you?
Symbols are a new primitive value introduced by ES6. Their purpose is to provide us unique identifiers. In this article, we tell you how they work, in which way they…
Callbacks in JavaScript
Callback functions are the same old JavaScript functions. They have no special syntax, as they are simply functions that are passed as an argument to another function. The function that receives…
How to create PDF with JavaScript and jsPDF
Creating dynamic PDF files directly in the browser is possible thanks to the jsPDF JavaScript library. In the last part of this article we have prepared a practical tutorial where I…