You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
322 B
20 lines
322 B
10 years ago
|
<!DOCTYPE HTML>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Konami code example</title>
|
||
|
|
||
|
<script src="konami.js"></script>
|
||
|
|
||
|
<script>
|
||
|
konami(function () {
|
||
|
var html = document.getElementsByTagName('html')[0];
|
||
|
html.style.backgroundColor = 'black';
|
||
|
html.style.color = 'white';
|
||
|
});
|
||
|
</script>
|
||
|
</head>
|
||
|
<body>
|
||
|
blah blah
|
||
|
</body>
|
||
|
</html>
|