<!DOCTYPE html>  
<html>  
<head>  
    <meta charset="UTF-8">  
    <meta name="viewport" content="width=device-width, initial-scale=1.0">  
    <title>电子科技行业最新资讯</title>  
    <style>  
        body {  
            font-family: Arial, sans-serif;  
            margin: 0;  
            padding: 20px;  
            background-color: #f4f4f4;  
        }  
        header {  
            background: #007BFF;  
            color: white;  
            padding: 10px 20px;  
            text-align: center;  
        }  
        .article {  
            background: white;  
            margin: 20px 0;  
            padding: 20px;  
            border-radius: 5px;  
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);  
        }  
        .article img {  
            max-width: 100%;  
            height: auto;  
            border-radius: 5px;  
        }  
        footer {  
            text-align: center;  
            margin-top: 20px;  
            font-size: 0.9em;  
            color: #777;  
        }  
    </style>  
</head>  
<body>  
    <header>  
        <h1>电子科技行业最新资讯</h1>  
    </header>  

    <main>  
        <article>  
            <h2>新款智能手机发布</h2>  
            <img src="https://example.com/image1.jpg" alt="新款智能手机">  
            <p>近日,知名手机厂商推出了他们的最新款智能手机,搭载了先进的AI技术,性能提升显著。</p>  
        </article>  

        <article>  
            <h2>人工智能的未来</h2>  
            <img src="https://example.com/image2.jpg" alt="人工智能技术">  
            <p>随着技术的不断进步,人工智能将在许多领域发挥越来越重要的作用,改变我们生活的方方面面。</p>  
        </article>  

        <article>  
            <h2>量子计算的最新突破</h2>  
            <img src="https://example.com/image3.jpg" alt="量子计算">  
            <p>科学家们在量子计算领域取得了新的突破,这将为计算速度和数据处理能力带来革命性的变化。</p>  
        </article>  

        <article>  
            <h2>5G网络的普及</h2>  
            <img src="https://example.com/image4.jpg" alt="5G网络">  
            <p>5G网络的迅速布局正在为更多智能设备的互联互通提供可能,推动智能城市和物联网的发展。</p>  
        </article>  
    </main>  

    <footer>  
        <p>&copy; 2024 电子科技行业资讯</p>  
    </footer>  
</body>  
</html>