About 2048
2048 is the sliding-tile puzzle where every move shifts the entire 4x4 board at once, merging any two tiles that share the same number into one tile worth double. Slide up, down, left, or right, and a new tile — usually a 2, occasionally a 4 — appears somewhere empty after every move that changes the board. The goal is to build your way up to a single 2048 tile before the grid fills in and no more merges are possible.
What makes this version worth returning to is how clean the loop stays: no ads inside the board, no forced tutorials, just the four-directions-and-merge mechanic that made the original a phenomenon. It tracks your best score locally in your browser, so you always know what you're chasing, and it supports both arrow-key input on desktop and swipe gestures on touch, so the experience doesn't change depending on device.
The puzzle is deceptively simple to learn and genuinely hard to master — every slide moves every tile on the board, so a move made without a plan can quietly wall off a corner you needed. Most new players lose their first several games in well under two minutes; players who learn to anchor their highest tile in a corner and build around it routinely last much longer and push well past the 2048 tile itself.
How to play
Controls: arrow keys on desktop, swipe in any direction on touch screens. Each press or swipe slides every tile on the board as far as it can go in that direction.
Objective: combine two tiles showing the same number by sliding them into each other — they merge into one tile with double the value. Keep merging until you build a 2048 tile (the game continues afterward if you want to keep climbing).
First-time guidance: a move affects the whole board, not a single tile — before you press a direction, picture where every tile on the board will end up, not just the one you're focused on.
Tips
- Pin your highest-value tile in one corner and never move it out of that corner for the rest of the game — building around a fixed anchor keeps the board from locking up around your best tile.
- Pick one general finishing direction (for example, always ending a sequence of moves by pressing down) so your tiles stay ordered by size along an edge instead of getting scattered across the board.
- Avoid completely filling a row or column with tiles that can't merge with each other — that's usually the move directly before a forced loss with no legal slides left.
- When you're stuck, look for a small tile sitting far from its matching partner and spend a turn bringing them together — it costs a move now but usually saves several later.
Frequently asked questions
What happens after I reach the 2048 tile?
The game doesn't stop — you can keep merging past 2048 toward 4096 and beyond for a higher score.
Is my best score saved?
Yes, locally in your browser using your device's storage. It's tied to this browser only and won't carry over to another device or browser.
Can two different numbers merge together?
No. Only two tiles showing the exact same number combine, and only two tiles merge per collision, never three at once.
Is there a time limit?
No — 2048 is turn-based with no clock. Take as long as you want between moves; nothing happens until you press a direction.