-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdragons.html
More file actions
65 lines (45 loc) · 1.55 KB
/
dragons.html
File metadata and controls
65 lines (45 loc) · 1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title></title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta name="robots" content="noindex, nofollow">
<meta name="googlebot" content="noindex, nofollow">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script
type="text/javascript"
src="/js/lib/dummy.js"
></script>
<link rel="stylesheet" type="text/css" href="/css/result-light.css">
<link rel="stylesheet" type="text/css" href="/myStyle.css">
<!-- TODO: Missing CoffeeScript 2 -->
<script type="text/javascript">//<![CDATA[
window.onload=function(){
var myHeading = document.getElementsByTagName('h1')[0];
myHeading.onclick = function() {
console.log("test");
myHeading.style.color = 'green';
};
}
//]]></script>
</head>
<body>
<h1>
DRAGONS!
</h1>
<img src="https://upload.wikimedia.org/wikipedia/commons/d/dd/Seoul_Lotus_Lantern_Festival_in_2015-Dragons.jpg" >
<a href="https://iceaxeliehne.github.io/RETDemo/" >Home</a>
<script>
// tell the embed parent frame the height of the content
if (window.parent && window.parent.parent){
window.parent.parent.postMessage(["resultsFrame", {
height: document.body.getBoundingClientRect().height,
slug: ""
}], "*")
}
// always overwrite window.name, in case users try to set it manually
window.name = "result"
</script>
</body>
</html>