-1

I want to targer google chrome , firefox and opera Using HTML

i have this code for Internet Explorer

<!--[if IE ]> test <![endif]-->  

waiting for good answer

thanks

1 Answers1

-2

firefox:

<!if firefox>
    test
<![endif]>

chrome:

<!if chrome>
    test
<![endif]>

opera

<!if opera>
    test
<![endif]>
Brian
  • 1,659
  • 12
  • 17
  • Thanks for help, but couldn't work (see link : http://filmsblog.me/target/default.html – Jacob Abderafie Jul 17 '15 at 21:18
  • The only other way there is to do this is through javascript/php. PHP: `$agent = $_SERVER['HTTP_USER_AGENT'];` then check what browser it is. – Brian Jul 17 '15 at 21:20