Untitled

 avatar
unknown
plain_text
2 years ago
541 B
5
Indexable
<!DOCTYPE html>
<html>
<head>
    <title>My Website</title>
    <style>
        body {
            background-color: black;
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
        }
        
        h1 {
            text-align: center;
        }
    </style>
</head>
<body>
    <h1>Welcome to my website!</h1>
    <img src="myimage.jpg" alt="My Image">
    <?php
    // PHP code goes here
    ?>
</body>
</html>
Editor is loading...