Generate front end coding for website
void print_header(string title, string desc) { cout << "<!doctype html>" << endl; cout << "<html>" << endl; cout << " <head>" << endl; cout << " <title>" << title << "</title>" << endl; cout << " </head>" << endl; cout << " <body>" << endl; cout << " <h1>" << title << "</h1>" << endl; cout << " <p>" << desc << "</p>" << endl; }