File: /home/internet/public_html/sathusupport.com/index.php
<?php
// This PHP script generates an HTML page with the logo centered, includes a favicon, and is optimized for mobile.
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sathu Support</title>
<!-- Link to the favicon -->
<link rel="icon" href="favicon.png" type="image/png">
<!-- Open Graph tags for social media sharing -->
<meta property="og:title" content="Sathu Support">
<meta property="og:description" content="Sathu Support">
<meta property="og:image" content="https://www.sathusupport.com/thumbnail.jpg">
<meta property="og:url" content="https://www.sathusupport.com/">
<meta property="og:type" content="website">
<meta property="og:locale" content="en_US">
<!-- Twitter Card tags for Twitter sharing -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Sathu Support">
<meta name="twitter:description" content="Sathu Support">
<meta name="twitter:image" content="https://www.sathusupport.com/thumbnail.jpg">
<style>
/* Reset margins and padding for full height and mobile optimization */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body, html {
height: 100%;
display: flex;
justify-content: center;
align-items: center;
font-family: Arial, sans-serif;
background-color: #f5f5f5;
}
.logo-container {
text-align: center;
padding: 20px;
}
.logo-container img {
max-width: 100%;
height: auto;
width: 300px; /* Default width for larger screens */
}
/* Ensure the image is responsive on tablets */
@media (max-width: 1024px) {
.logo-container img {
width: 50%;
}
}
/* Further reduce the image size on smaller screens */
@media (max-width: 768px) {
.logo-container img {
width: 40%;
}
}
/* Optimize for very small screens */
@media (max-width: 480px) {
.logo-container img {
width: 70%; /* Larger logo for small screens */
}
}
</style>
</head>
<body>
<div class="logo-container">
<img src="Sathu.svg" alt="Sathu Support Logo">
</div>
</body>
</html>