主页模版edit icon

Fork(复制)
下载
嵌入
BUG反馈
index.html
现在支持上传本地图片了!
index.html
            
            <!DOCTYPE html>
<html lang="zh-CN">
<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;
            text-align: center;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
        background-image: url('background.jpg');
        }
        header {
            
            color: white;
            padding: 20px 0;
        }
        h1 {
        color: #333;
            margin: 0;
        }
        h2 {
            color: #333;
            margin-top: 10px;
        }
        .container {
            max-width: 1200px;
            margin: 20px auto;
            padding: 0 20px;
        }
        .gallery {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
        }
        .gallery-item {
            flex: 1 1 calc(25% - 20px);
            box-sizing: border-box;
            text-align: center;
        }
        .gallery-item img {
            max-width: 100%;
            height: auto;
        }
        .gallery-item a {
            text-decoration: none;
            color: #333;
        }
        .gallery-item a:hover {
            text-decoration: underline;
        }
        .project-name {
            margin-top: 10px;
            font-size: 1.2em;
        }
        .project-description {
            margin-top: 5px;
            font-size: 0.9em;
            color: #666;
        }
    </style>
</head>
<body>
    <header>
        <h1>在这里写标题</h1>
        <h2>在这里写副标题</h2>
    </header>
    <div class="container">
        <div class="gallery">
            <div class="gallery-item">
                <a href="张三_3D打印.html">
                    <img src="" alt="在这里添加图片">
                    <div class="project-name">在这里写子页面主题</div>
                    <div class="project-description">在这里写文案</div>
                </a>
            </div>
            <div class="gallery-item">
                <a href="">
                    <img src="" alt="在这里添加图片">
                    <div class="project-name">在这里写子页面主题</div>
                    <div class="project-description">在这里写文案</div>
                </a>
            </div>
            <div class="gallery-item">
                <a href="">
                    <img src="" alt="在这里添加图片">
                    <div class="project-name">在这里写子页面主题</div>
                    <div class="project-description">在这里写文案</div>
                </a>
            </div>
            <div class="gallery-item">
                <a href="">
                    <img src="" alt="在这里添加图片">
                    <div class="project-name">在这里写子页面主题</div>
                    <div class="project-description">在这里写文案</div>
                </a>
            </div>
            <div class="gallery-item">
                <a href="">
                    <img src="" alt="在这里添加图片">
                    <div class="project-name">在这里写子页面主题</div>
                    <div class="project-description">在这里写文案</div>
                </a>
            </div>
            <div class="gallery-item">
                <a href="">
                    <img src="" alt="在这里添加图片">
                    <div class="project-name">在这里写子页面主题</div>
                    <div class="project-description">在这里写文案</div>
                </a>
            </div>
            <div class="gallery-item">
                <a href="">
                    <img src="" alt="在这里添加图片">
                    <div class="project-name">在这里写子页面主题</div>
                    <div class="project-description">在这里写文案</div>
                </a>
            </div>
            <div class="gallery-item">
                <a href="">
                    <img src="" alt="在这里添加图片作">
                    <div class="project-name">在这里写子页面主题</div>
                    <div class="project-description">在这里写文案</div>
                </a>
            </div>
        </div>
    </div>
</body>
</html>
        
编辑器加载中
预览
控制台