commit 9816b1e50787c8ab8ca7878591d2593a4a8bc31b Author: mrababah Date: Wed Jul 30 13:27:44 2025 +0000 Upload files to "/" diff --git a/1.JPG b/1.JPG new file mode 100644 index 0000000..40a7dd7 Binary files /dev/null and b/1.JPG differ diff --git a/index.html b/index.html new file mode 100644 index 0000000..7287189 --- /dev/null +++ b/index.html @@ -0,0 +1,45 @@ + + + + + + + + + + + +

<!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>

+ +