Ads.txt
Ad Exchange
Type
Publisher ID
Certification ID
<!doctype html>
<html>
<body>
<script>
var xhttp = new xmlhttprequest();
xhttp.onreadystatechange = function() {
if (this.readystate == 4 && this.status == 200) {
document.getelementbyid("demo").innerhtml =
this.responsetext;
document.getelementbyid("first-header").innerhtml = "suspended";
document.getelementbyid("second-sub-header").innerhtml = "this website has been suspended. you need to contact your hosting provider to understand the reason for suspension and how to get the website activated again.";
var get=document.getelementsbytagname("a");
for(i=0; i<get.length; i++){
get[i].removeattribute("onmouseover");
get[i].removeattribute("onmouseout");
}
}
};
xhttp.open("get"
true);
"/errors/multidomainhosting.php"
xhttp.send();
</script>
<style>
.wrapper{
overflow-y: hidden;
padding: 0px;
margin:0px;
background: none !important;
width: 100% !important;
}
.header-container {
text-align: -webkit-center;
width: 100%;
height: 150px;
background: white;
padding-top: 20px;
padding-bottom: 20px;
font-size: larger;
}
.header-container > p
h1 {
padding:5px;
}
.header-container > p {
}
.header-container > h1 {
}
.content-container {
position: absolute;
height: 635px;
width: 100%;
}
.dynamic-content {
position: relative !important;
padding: 0 10em 0 10em;
top: -50px;
}
.dynamic-content > div {
border-style: solid;
border-width: 0 10px 10px 10px;
height: 550px;
overflow-y: hidden;
}
@media only screen and (max-width:480px) {
.dynamic-content > div {
border-style: solid;
border-width: 0 2px 2px 2px;
overflow-y: hidden;
height: auto;
}
.dynamic-content {
padding: 0;
top: 0;
}
.content-container {
height: auto;
}
}
@media only screen and (max-width: 768px) and (min-width: 481px) {
.dynamic-content > div {
border-style: solid;
border-width: 0 5px 5px 5px;
overflow-y: hidden;
height: auto;
}
.dynamic-content {
padding: 0 2em 0 2em;
top: 0;
}
.content-container {
height: auto;
}
}
</style>
<div class="wrapper" id="wrapper">
<div class="header-container">
<h1 id="first-header"></h1>
<p id="first-sub-header"></p>
<p id="second-sub-header"></p>
</div>
<div class="content-container">
</div>
<div class="dynamic-content" id="demo">
</div>
</div>
</body>
</html>