-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path404.html
More file actions
23 lines (23 loc) · 852 Bytes
/
404.html
File metadata and controls
23 lines (23 loc) · 852 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<header id="headerGen"></header>
<h1 id="color-text">お探しのページはありませんでした。</h1>
<p id="color-text">404 Not Found</p>
<a href="/" id="color-text">ルートディレクトリに戻る</a>
<script>
setInterval(color,1);
function color() {
var x = document.getElementById("color-text");
var run1 = Math.ceil( Math.random() * 255 );
var run2 = Math.ceil( Math.random() * 255 );
var run3 = Math.ceil( Math.random() * 255 );
var y = "rgb(" + run1 + "," + run2 + "," + run3 + ")"
x.style.color = y;
}
</script>
<script src="/header.js"></script>
</body>
</html>