predator
Update index.html
b08fc39 verified
raw
history blame
1.02 kB
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Realistic Image Generator Model</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<style>
body {
margin: 0;
font-family: 'Poppins', sans-serif;
}
.fullframe {
max-width: 100%;
max-height: 100%;
width: 100vw;
height: 100vh;
overflow: hidden;
}
.iframe-element {
min-width: 100%;
min-height: 100%;
}
</style>
</head>
<body>
<div class="fullframe">
<iframe class="iframe-element" allowfullscreen="true" frameborder="0" src="https://artificialguybr-realvisxl-free-demo.hf.space">
</iframe>
</div>
</body>
</html>