I just wanna know how to do an if-statement in simple HTML. Like the [if IE6] thingy
if
[if IE6]
I\'d like to do something like this
[I
If you want to check for browser versions:
Other than that, you cannot use if statements in HTML, as it is a markup language and not a programming language. You need to do it either server side or with Javascript.