一个简约风格的单页html页面,可用于网站维护中或更新网站时挂个首页使用,如果不喜欢现在的颜色请F12修改设置既可。
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>网站维护更新中,敬请期待</title> </head> <style> *{ margin:0; padding:0; } html{ height:100%; } body{ background:#F1FDFE; height:100%; } .mom{ width:600px; height:100px; line-height:100px; text-align:center; font-size:30px; border-width:5px; border-style:dashed; border-color:rgb(200, 0, 255); position:relative; left:50%; margin-left:-300px; top:50%; margin-top:-50px; background:#e6fafd; color:rgb(255, 0, 55); } </style> <body> <div class="mom"> 网站维护更新维护中,敬请期待.... </div> </body> </html>