<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<style type="text/css">
    h1,p{
        text-align: center;
    }
    .detail{
        font-size: 40px;
        color:red;
    }
</style>
<body>
    <h1 id="domain"></h1>
    <p class="detail">当前域名已过期，请联系注册商续费</p>
    <p class="detail">Domain is expired,please contact the registrant for renewal</p>
</body>
<script>
    function getDomain(param){
        var result = window.location.href.match(new RegExp("[\?\&]" + param + "=([^\&]+)", "i"));
        return result && result.length ? decodeURI(result[1]) : ''
    }
    document.getElementById("domain").innerHTML=getDomain('dm');
</script>
</html>
