123456789101112131415
#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; }