<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <meta name="description" content="Professional Article Block">

    <title>Article Block</title>

    <!-- Import Google Font: Anuphan -->

    <link href="https://fonts.googleapis.com/css2?family=Anuphan:wght@400;500;700&display=swap" rel="stylesheet">

    <!-- CSS Styles -->

    <style>

        body {

            font-family: 'Anuphan', sans-serif;

            margin: 0;

            padding: 0;

            background-color: #f5f5f5;

            color: #333;

        }


        .article-block {

            width: 80%;

            max-width: 800px;

            margin: 50px auto;

            background: #e0e0e0;

            border-radius: 8px;

            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

            overflow: hidden;

        }


        .article-header {

            background: linear-gradient(45deg, #d6d6d6, #bdbdbd);

            padding: 20px;

            text-align: center;

        }


        .article-header h1 {

            font-size: 2em;

            font-weight: 700;

            margin: 0;

            color: #333;

        }


        .article-header p {

            font-size: 1em;

            font-weight: 400;

            color: #555;

            margin-top: 8px;

        }


        .article-content {

            padding: 20px;

            background-color: #fff;

        }


        .article-content h2 {

            font-size: 1.5em;

            font-weight: 500;

            color: #555;

            margin-bottom: 15px;

        }


        .article-content p {

            font-size: 1em;

            line-height: 1.8;

            color: #666;

            margin-bottom: 20px;

        }


        .article-content img {

            width: 100%;

            max-width: 100%;

            border-radius: 5px;

            margin: 20px 0;

        }


        .article-content iframe {

            width: 100%;

            height: 315px;

            border: none;

            margin: 20px 0;

            border-radius: 5px;

        }


        .article-content audio {

            width: 100%;

            margin: 20px 0;

        }


        .article-footer {

            background: #d6d6d6;

            padding: 10px 20px;

            text-align: right;

            font-size: 0.9em;

            color: #555;

        }


        .article-footer a {

            text-decoration: none;

            color: #333;

            font-weight: 500;

            transition: color 0.3s;

        }


        .article-footer a:hover {

            color: #000;

        }


        @media (max-width: 768px) {

            .article-block {

                width: 90%;

            }


            .article-header h1 {

                font-size: 1.8em;

            }


            .article-content h2 {

                font-size: 1.3em;

            }

        }

    </style>

</head>

<body>

    <div class="article-block">

        <div class="article-header">

            <h1>Mastering Modern Web Design</h1>

            <p>January 20, 2025 | By Jane Doe</p>

        </div>

        <div class="article-content">

            <h2>Introduction</h2>

            <p>Web design has evolved significantly over the years, becoming a blend of art and technology. Today, creating a visually appealing and functional website requires a deep understanding of user experience, aesthetics, and coding principles.</p>


            <img src="https://via.placeholder.com/800x400" alt="Example Image">


            <h2>Key Principles of Modern Design</h2>

            <p>Modern web design emphasizes simplicity, responsiveness, and accessibility. Using clean layouts, a cohesive color scheme, and intuitive navigation ensures a positive experience for users.</p>


            <iframe src="https://www.youtube.com/embed/dQw4w9WgXcQ" title="YouTube video"></iframe>


            <h2>Conclusion</h2>

            <p>Mastering modern web design is an ongoing journey that combines creativity with technical skills. Stay updated with the latest trends and tools to create websites that stand out in the digital landscape.</p>


            <audio controls>

                <source src="example-audio.mp3" type="audio/mpeg">

                Your browser does not support the audio element.

            </audio>

        </div>

        <div class="article-footer">

            <p>Read more articles like this on <a href="#">Our Blog</a>.</p>

        </div>

    </div>

</body>

</html>