diff --git a/examples/demo_service/service.cpp b/examples/demo_service/service.cpp index 49e8e44298..d19e6bb99e 100644 --- a/examples/demo_service/service.cpp +++ b/examples/demo_service/service.cpp @@ -30,23 +30,19 @@ std::string HTML_RESPONSE() { const int color = rand(); - /* HTML Fonts */ - std::string ubuntu_medium = "font-family: \'Ubuntu\', sans-serif; font-weight: 500; "; - std::string ubuntu_normal = "font-family: \'Ubuntu\', sans-serif; font-weight: 400; "; - std::string ubuntu_light = "font-family: \'Ubuntu\', sans-serif; font-weight: 300; "; - - /* HTML */ + // Generate some HTML std::stringstream stream; stream << "
" - << "" - << "" - << "This is improvised http, but proper stuff is in the works.
" - << "" - << ""; + << " " + << "You have successfully booted an IncludeOS TCP service with simple http. " + << "For a more sophisticated example, take a look at " + << "Acorn.
" + << "