As you can tell from the URL, the page is developed in Oracle's Apex product and hosted on the free Oracle Apex site. The site terms forbid hosting production data, but the site is a great resource for Oracle developers: apex.oracle.com
The Browser Identification region is a basic APEX HTML region, with one APEX item. The browser string is read by the SQL expression:
SELECT OWA_UTIL.GET_CGI_ENV('HTTP_USER_AGENT')
FROM DUAL;
There's a lot more information in the CGI environment, and the PRINT_CGI_ENV procedure in the OWA_UTIL package will dump everything. The next region, CGI Environment Strings, is an Oracle PL/SQL region. The PL/SQL code in this region is a simple anonymous block:
begin
owa_util.print_cgi_env;
end;
Read more about the OWA_UTIL package.