Webpage .txt

 avatar
unknown
html
2 years ago
2.1 kB
5
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Your Name - Motivational Art</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            background-color: #1a1a1a;
            color: #ffffff;
            margin: 0;
            padding: 0;
        }

        header {
            text-align: center;
            padding: 20px;
        }

        section {
            max-width: 800px;
            margin: 20px auto;
            padding: 20px;
            background-color: #333333;
            border-radius: 10px;
        }

        h1 {
            color: #ffffff;
        }

        p {
            line-height: 1.6;
        }

        .artwork {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
        }

        .art-piece {
            margin: 10px;
            max-width: 300px;
            text-align: center;
        }

        footer {
            text-align: center;
            padding: 20px;
            background-color: #1a1a1a;
        }
    </style>
</head>
<body>

    <header>
        <h1>Your Name</h1>
        <p>Explore a world of motivation through art.</p>
    </header>

    <section>
        <h2>Welcome to my collection!</h2>
        <p>Discover inspiring art with motivational slogans to elevate your space.</p>

        <div class="artwork">
            <!-- Add your art pieces here with images and descriptions -->
            <div class="art-piece">
                <img src="artwork1.jpg" alt="Artwork 1">
                <p>Empowerment</p>
                <p>$50.00</p>
            </div>

            <div class="art-piece">
                <img src="artwork2.jpg" alt="Artwork 2">
                <p>Persistence</p>
                <p>$45.00</p>
            </div>

            <!-- Add more art pieces as needed -->
        </div>
    </section>

    <footer>
        <p>Contact me at yourname@example.com</p>
    </footer>

</body>
</html>
Editor is loading...
Leave a Comment