Untitled
2 years ago in Plain Text
<html>
<head>
<title>MyBookmarks</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
linux<br>
Mozilla/5.0 (X11; Linux i686; rv:68.0) Gecko/20100101 Firefox/68.0<br>
windows 7<br>
Mozilla/5.0 (Windows NT 6.1; rv:52.0) Gecko/20100101 Firefox/52.0<p>
the current version is <span id="vers"></span><p>
<script>
async function getVersion() {
const response = await fetch('https://api.ipify.org/');
const text = await response.text();
document.getElementById("vers").innerHTML = text;
};
//getVersion();
</script>
</body>
</html>