Untitled

mail@pastecode.io avatar
unknown
plain_text
18 days ago
1.9 kB
3
Indexable
Never
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Custom Template</title>
    <style>
        body, html {
            margin: 0;
            padding: 0;
            height: 100%;
            font-family: Arial, sans-serif;
            background-color: #f4f4f4;
        }

        .container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100vh;
        }

        .hero {
            text-align: center;
        }

        .hero h1 {
            font-size: 3rem;
            letter-spacing: 3px;
        }

        .hero p {
            font-size: 1.5rem;
            color: #555;
        }

        .hero button {
            padding: 15px 30px;
            background-color: #333;
            color: #fff;
            border: none;
            cursor: pointer;
            margin-top: 20px;
            transition: background-color 0.3s ease;
        }

        .hero button:hover {
            background-color: #555;
        }

        /* For animations and interactivity */
        .animated-bg {
            width: 100%;
            height: 100vh;
            background: linear-gradient(45deg, #6b8e23, #90ee90);
            animation: bgAnimation 10s infinite alternate;
        }

        @keyframes bgAnimation {
            0% { background-position: 0% 50%; }
            100% { background-position: 100% 50%; }
        }
    </style>
</head>
<body>
    <div class="animated-bg">
        <div class="container">
            <div class="hero">
                <h1>Welcome to Custom Flea Market</h1>
                <p>Your place for exclusive drops and apparel</p>
                <button>Shop Now</button>
            </div>
        </div>
    </div>
</body>
</html>
Leave a Comment