<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Hello World</title>
    <style>
        @import url('https://fonts.googleapis.com/css2?family=Sarabun&display=swap');
        body {
            font-family: 'Sarabun', sans-serif;
            background-color: #f4f4f4;
            color: #333;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
        }

        .container {
            text-align: center;
        }

        h1 {
            font-size: 2.5em;
            margin-bottom: 20px;
        }

        p {
            font-size: 1.2em;
            margin-bottom: 10px;
        }

        a {
            color: #007bff;
            text-decoration: none;
            font-weight: bold;
        }

        a:hover {
            text-decoration: underline;
        }

        img {
            max-width: 100%;
            height: auto;
            margin-bottom: 0px;
        }
    </style>
</head>
<body>
    <div class="container" style="">
        <img src="https://raw.githubusercontent.com/PCM-PMK/GWF/refs/heads/main/py6-pcm-20251118.png" width="300px">
        <h1>Welcome to the ๖!</h1>
    </div>
</body>
</html>
        
