一个域名出售的html模板
侧边栏壁纸
  • 累计撰写 4 篇文章
  • 累计收到 3 条评论

一个域名出售的html模板

全局变量
2001-01-01 / 0 评论 / 6 阅读 / 正在检测是否收录...
<!DOCTYPE html>
<html lang="zh">
<head>
    <meta charset="UTF-8">
    <title>ilogs.cn 域名出售</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', system-ui, sans-serif;
        }

        body {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .domain-card {
            background: white;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 60px;
            text-align: center;
            margin-bottom: 40px;
        }

        .domain-name {
            font-size: 3.5rem;
            color: #2d3436;
            letter-spacing: -2px;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .domain-badge {
            display: inline-block;
            background: #2185d0;
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            margin-bottom: 30px;
        }

        .domain-desc {
            color: #636e72;
            font-size: 1.2rem;
            line-height: 1.6;
            max-width: 800px;
            margin: 0 auto 40px;
        }

        .highlight {
            color: #2185d0;
            font-weight: 600;
        }

        .price-section {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 12px;
            margin: 30px 0;
        }

        .price-tag {
            font-size: 2.5rem;
            color: #2d3436;
            margin-bottom: 20px;
        }

        .cta-button {
            background: #2185d0;
            color: white;
            padding: 16px 45px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: transform 0.2s;
            font-size: 1.1rem;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(33,133,208,0.3);
        }

        @media (max-width: 768px) {
            .domain-name {
                font-size: 2.5rem;
            }
            .container {
                padding: 20px;
            }
            .domain-card {
                padding: 30px;
            }
        }
    </style>
</head>
<body>
    <div class="container">
        <div class="domain-card">
            <div class="domain-badge">优质域名待售</div>
            <h1 class="domain-name">ilogs.cn</h1>
            
            <p class="domain-desc">
                <span class="highlight">"iLogs"</span> 是「智能日志」「创新记录」「互联网足迹」的完美缩写,该域名简短易记且极具品牌延展性。.cn后缀彰显本土化优势,特别适合:
                <br><br>
                ✓ 数据记录平台<br>
                ✓ 开发者技术博客<br>
                ✓ 物联网日志系统<br>
                ✓ 企业级服务门户<br>
                ✓ 个人数字资产管理
            </p>

            <div class="price-section">
                <div class="price-tag">¥ 28,800</div>
                <p>包含域名所有权完整转让及注册商转移协助服务</p>
            </div>

            <a href="#contact" class="cta-button">立即洽谈购买</a>
        </div>
    </div>
</body>
</html>
0

评论 (0)

取消