File size: 2,012 Bytes
1cd3cbd fe17c52 1cd3cbd fe17c52 e057b6c fe17c52 1cd3cbd fe17c52 1cd3cbd fe17c52 1cd3cbd fe17c52 00759aa 1cd3cbd fe17c52 1cd3cbd fe17c52 e057b6c fe17c52 1cd3cbd 9eb2b91 9f14fa9 00759aa 1cd3cbd fe17c52 1cd3cbd |
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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>ImagineX XL</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%;
}
.floating-button {
position: fixed;
bottom: 30px;
left: 20px;
background-color: #dbdad7;
color: black;
padding: 15px 25px;
border: none;
border-radius: 10px;
font-size: 13px;
font-weight: bold;
cursor: pointer;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
transition: background-color 0.3s, box-shadow 0.3s;
text-decoration: none;
font-family: 'Poppins', sans-serif;
display: flex;
align-items: center;
justify-content: center;
}
.floating-button:hover {
background-color: #dbdad7;
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
.floating-button i {
margin-right: 10px;
}
</style>
</head>
<body>
<div class="fullframe">
<iframe class="iframe-element" allowfullscreen="true" frameborder="0" src="https://artificialguybr-dreamshaper-xl-free-demo.hf.space">
</iframe>
</div>
<a href="https://discord.com/invite/EM4uHQrakm" class="floating-button" target="_blank">
<i class="fab fa-discord"></i> Join Discord
</a>
</body>
</html> |