Spaces:
Sleeping
Sleeping
File size: 1,769 Bytes
430f6e9 04527c3 430f6e9 04527c3 430f6e9 04527c3 430f6e9 04527c3 430f6e9 |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Embedded content from Pixel Phraser">
<title>Pixel Phraser - Create Engaging Visual Content</title> <!-- Updated title -->
<style>
body {
margin: 0;
padding: 0;
height: 100vh;
/* Full height */
overflow: hidden;
/* Prevent scrolling on the body */
display: flex;
flex-direction: column;
}
header {
background-color: #333;
/* Change to your desired header color */
color: white;
/* Text color */
padding: 10px 20px;
/* Adjust padding as needed */
text-align: center;
/* Center the text */
position: fixed;
/* Fix the header to the top */
width: 100%;
/* Full width */
z-index: 10;
/* Make sure it appears above other content */
}
.iframe-container {
flex: 1;
/* Take up remaining space */
margin-top: 50px;
/* Adjust margin for header height */
}
iframe {
width: 100%;
height: 100%;
border: none;
overflow: hidden;
/* Prevent scrolling inside the iframe */
}
</style>
</head>
<body>
<header>
<h1>Pixel Phraser</h1> <!-- Title of the page -->
</header>
<div class="iframe-container">
<iframe src="https://fsadeek-pixelphraser.hf.space" title="Pixel Phraser" scrolling="no"></iframe>
</div>
</body>
</html> |