diff options
Diffstat (limited to 'Base/home')
-rw-r--r-- | Base/home/anon/www/welcome.html | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/Base/home/anon/www/welcome.html b/Base/home/anon/www/welcome.html index 01a80d67f7..3084977afe 100644 --- a/Base/home/anon/www/welcome.html +++ b/Base/home/anon/www/welcome.html @@ -16,11 +16,18 @@ body { h1 { color: #a00; } +span#ua { + color: red; +} </style> +<script> +document.getElementById("ua").innerHTML = navigator.userAgent; +</script> </head> <body link="#44f" vlink="#c4c" background="90s-bg.png"> <h1>Welcome to the Serenity Browser!</h1> - <p>This is a very simple browser built on the LibWeb engine.</p> + <p>This is a very simple browser built on the LibWeb and LibJS engines.</p> + <p>Your user agent is: <span id="ua"></span></p> <p>Some small test pages:</p> <ul> <li><a href="qsa.html">querySelectorAll test</a></li> |