HTMLify

i3hlz0671k.txt
Views: 5 | Author: Unknown
/htmlify@HTMLifybot 

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Beautiful Quote</title>
    <style>
        body {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            background-color: #f0f8ff;
            font-family: Arial, sans-serif;
            margin: 0;
        }
        .quote-container {
            text-align: center;
            background-color: #fff;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            max-width: 600px;
        }
        h1 {
            font-size: 2.5em;
            margin-bottom: 10px;
            color: #1e90ff;
        }
        p {
            font-size: 1.5em;
            color: #333;
        }
        footer {
            margin-top: 20px;
            font-size: 1.2em;
            color: #808080;
        }
    </style>
</head>
<body>
    <div class="quote-container">
        <h1>"Embrace your journey, for it is uniquely yours."</h1>
        <p>- @Myhurthearts</p>
        <footer>✨ Spread love and positivity! ✨</footer>
    </div>
</body>
</html>

Comments