19 lines
344 B
HTML
19 lines
344 B
HTML
|
<head>
|
||
|
<title>C'est nul !</title>
|
||
|
</head>
|
||
|
<script src="punycode.min.js">
|
||
|
</script>
|
||
|
|
||
|
<script type="text/javascript">
|
||
|
window.onload = clear;
|
||
|
|
||
|
function clear() {
|
||
|
str_hostname = punycode.toUnicode(location.host)
|
||
|
document.body.innerHTML = str_hostname.replace(".saynul.eu", ", c'est nul !");
|
||
|
};
|
||
|
</script>
|
||
|
|
||
|
<body>
|
||
|
C'est nul !
|
||
|
</body>
|