<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blank Page</title>
<style>
body {
margin: 0;
padding: 0;
background-color: white;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.placeholder {
width: 100%;
text-align: center;
}
</style>
</head>
<body>
<div class="placeholder">
<!-- Your content will go here -->
</div>
</body>
</html>