+ 1
Can i hack games using HTML?
please answer
6 Antworten
+ 5
You can hack with HTML. And, also, penguins can fly at mach speed.
+ 3
You can hack nothing with HTML. It's just the page structure.
+ 1
HTML isn't made for hacking.
It's just a markup language, not a programming language.
HTML is used for structural purposes on a web page, not functional ones.
+ 1
why hack when you can Facebook all day
+ 1
You can "hack together" (make) a game with HTML. It's likely to be something like a text adventure because the logic has to be at the server (unless you're scripting) or some clever handwaving with dynamic elements.
Otherwise, HTML is in spirit a bunch of layout suggestions (hints; not instructions) to be interpreted by a rendering engine. "Interpreted" in this sense means "the renderer chooses" (so it can ignore, modify, support additional or different renders) and not a programming language's interpreter (which goes on to create definite code).
+ 1
HTML is just a markup language, it describes the basic contents of a web page, but it its no programming language, you cannot implement any logic with HTML.
But you could define the basic objects of a game with HTML, like rectangles or circles and then move them with JavaScript by using document.getElementById etc.