<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <title>Sample Page with Photo</title>

    <style>

        body {

            font-family: Arial, sans-serif;

            text-align: center;

            background-color: #f9f9f9;

            padding: 50px;

        }

        img {

            max-width: 100%;

            height: auto;

            border: 2px solid #ccc;

            border-radius: 8px;

        }

    </style>

</head>

<body>

    <h1>Welcome to My Sample Page</h1>

    <p>This is a sample image loaded from <strong>1.jpg</strong>.</p>

    <img src="1.jpg" alt="Sample Photo">

</body>

</html>