你好啊! <!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="uncode"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>北辛中学每月月考查分入口</title> <style> body { margin: 0; padding: 0; min-height: 100vh; display: flex; justify-content: center; align-items: center; background-color: #f0f8ff; font-family: "Microsoft YaHei", sans-serif; } .container { text-align: center; padding: 20px; } h1 { color: #333; margin-bottom: 30px; } .score-btn { padding: 15px 30px; font-size: 18px; font-weight: bold; color: white; background-color: #4CAF50; border: none; border-radius: 8px; cursor: pointer; transition: all 0.3s ease; white-space: nowrap; } .score-btn:hover { background-color: #45a049; transform: scale(1.05); box-shadow: 0 4px 8px rgba(0,0,0,0.1); } .note { margin-top: 20px; color: #666; font-size: 14px; } </style> </head> <body> <div class="container"> <h1>月考成绩查询系统</h1> <button id="redirectBtn" class="score-btn">月考查分,可查所有考生分数,请自备学籍号</button> <p class="note">点击按钮进入查询页面,请确保已准备好卫生纸</p> </div> <script> document.getElementById('redirectBtn').addEventListener('click', function() { window.location.href = 'https://bb.hdys0.com/'; }); </script> </html>
Note.ms
/cdlm