Parses and renders a HTML webpage Must be in this format: <!DOCTYPE html><html><head><title>Title</title><style>body{color:#000000;background-color:#ffffff;}</style></head><body><h1>Heading</h1><p>Text</p></body></html> Replace: Title → Title #000000 → Hex text color #ffffff → Hex background color Heading → Heading Text → Text Example: <!DOCTYPE html><html><head><title>Basic page</title><style>body{color:#550000;background-color:#fffdd0;}</style></head><body><h1>A nice page</h1><p>Do you like the colors? The way to make new lines is to press a lot of spaces</p></body></html> If it doesn't follow this format it will stop the project
@aspirus for text engine ... This took longer than expected