File size: 581 Bytes
add7335 cc63ab8 c9f09e8 cc63ab8 c9f09e8 cc63ab8 bd90f35 c9f09e8 bd90f35 cc63ab8 bd90f35 cc63ab8 add7335 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>latens.ai Fullscreen</title>
<style>
body {
margin: 0;
overflow: hidden;
}
iframe {
width: 100vw;
height: 100vh;
border: none; /* To remove iframe border */
}
</style>
</head>
<body>
<!-- Embedding the iframe for latens.ai -->
<iframe src="https://latens.ai/" frameborder="0" allowfullscreen></iframe>
</body>
</html>
|