+ 2
I do not believe you can use C++ with html and here is why:
C++ is a compiled language. It is translated directly to machine code by a compiler.
A browser does not understand machine code, It understands an interpreted language like JavaScript.
That is why you cannot use C++, only JavaScript or another scripting language.
A little bit simplified, but I hope that helps.



