#include #include using namespace std; int main(){ ofstream output_file; output_file.open("output_file.html"); output_file << ""; output_file << "Class: Elvish Archer
" << "Cost: 17
" << "Description: An elf that is an archer
" << ""; output_file << ""; output_file.close(); //system("firefox output_file.html"); system("w3m output_file.html"); return 0; }