“首页”的版本间的差异
来自个人维基
第1行: | 第1行: | ||
− | + | <!DOCTYPE html> | |
+ | <html lang="zh"> | ||
+ | <head> | ||
+ | <meta charset="UTF-8"> | ||
+ | <meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
+ | <title>Wiki首页</title> | ||
+ | <style> | ||
+ | body { | ||
+ | font-family: Arial, sans-serif; | ||
+ | margin: 0; | ||
+ | padding: 0; | ||
+ | display: flex; | ||
+ | flex-direction: column; | ||
+ | } | ||
+ | /* 中间区域 */ | ||
+ | .main-content { | ||
+ | flex: 1; | ||
+ | display: flex; | ||
+ | justify-content: center; | ||
+ | align-items: center; | ||
+ | height: 400px; /* 可根据需要调整 */ | ||
+ | background-color: #f4f4f4; | ||
+ | } | ||
+ | /* 左右两边 */ | ||
+ | .sidebar { | ||
+ | display: flex; | ||
+ | justify-content: space-between; | ||
+ | padding: 20px; | ||
+ | } | ||
+ | .sidebar img { | ||
+ | width: 250px; | ||
+ | height: auto; | ||
+ | margin: 0 10px; | ||
+ | } | ||
+ | /* 底部 */ | ||
+ | .footer { | ||
+ | display: flex; | ||
+ | justify-content: center; | ||
+ | padding: 20px; | ||
+ | background-color: #f4f4f4; | ||
+ | } | ||
+ | .footer img { | ||
+ | width: 250px; | ||
+ | height: auto; | ||
+ | margin: 0 10px; | ||
+ | } | ||
+ | </style> | ||
+ | </head> | ||
+ | <body> | ||
+ | <!-- 左右两边 --> | ||
+ | <div class="sidebar"> | ||
+ | <a href="频道1链接"><img src="left-image.jpg" alt="频道1"></a> | ||
+ | <a href="频道2链接"><img src="right-image.jpg" alt="频道2"></a> | ||
+ | </div> | ||
+ | <!-- 中间测试页面 --> | ||
+ | <div class="main-content"> | ||
+ | <p>测试页面内容</p> | ||
+ | </div> | ||
− | + | <!-- 底部鸣谢 --> | |
− | + | <div class="footer"> | |
− | ! | + | <a href="鸣谢链接"><img src="footer-image.jpg" alt="鸣谢"></a> |
− | + | </div> | |
− | + | </body> | |
− | + | </html> | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + |
2024年12月1日 (日) 00:21的版本
<!DOCTYPE html>
测试页面内容