Generation

generate functionThu, 20 Apr 2023

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

Questions about programming?Chat with your personal AI assistant