| 1234567891011121314151617181920 | <!DOCTYPE html><html lang="en"><head>	<meta charset="UTF-8">	<title>Document</title></head><body>	<h3>		Secret:		<span id="secret"></span>	</h3>	<script src="../dist/lofig.min.js"></script>	<script>		(async () => {			document.getElementById("secret").textContent = await lofig.get('secret');			document.getElementById("secret").style.color = "tomato";		})();	</script></body></html>
 |