Help to use HTML code in C++

Hi..
I'm a beginner level c++ programmer.
I want to use html in my program for web. How can I use it??

Please help me as soon as possible.

You can send me mail to: "xenonsofta@gmail.com"
Please explain the "use html".
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <iostream>

int main()
{
  using std::cout;
  cout << "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\"\n";
  cout << "        \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\n";
  cout << "<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en\">\n";
  cout << "<head>\n";
  cout << "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"/>\n";
  cout << "<title>Hello world</title>\n";
  cout << "</head>\n";
  cout << "<body></body></html>\n";
  return 0;
}
I've sent email to xenonsofta@gmail.com...
Regards!
Topic archived. No new replies allowed.