-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.com.html
More file actions
67 lines (58 loc) · 1.74 KB
/
example.com.html
File metadata and controls
67 lines (58 loc) · 1.74 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
66
67
<!DOCTYPE html>
<!-- saved from url=(0020)https://example.com/ -->
<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Example Domain</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style type="text/css">
body {
background-color: #f0f0f2;
margin: 0;
padding: 0;
font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
div {
width: 600px;
margin: 5em auto;
padding: 2em;
background-color: #fdfdff;
border-radius: 0.5em;
box-shadow: 2px 3px 7px 2px rgba(0,0,0,0.02);
}
a:link, a:visited {
color: #38488f;
text-decoration: none;
}
@media (max-width: 700px) {
div {
margin: 0 auto;
width: auto;
}
}
</style>
<script type="importmap">
{
"imports": {
"webgl-path-tracing": "https://webgl-path-tracing.steren.fr/webgl-path-tracing.js",
"sylvester": "https://webgl-path-tracing.steren.fr/sylvester.src.js",
"rtx-on": "../rtx-on.js"
}
}
</script>
<script type="module">
import * as rtx from 'rtx-on';
window.onload = function() {
rtx.on({
forceLightMode: true
});
rtx.button();
}
</script>
</head>
<body>
<div>
<h1>Example Domain</h1>
<p>This domain is for use in illustrative examples in documents. You may use this
domain in literature without prior coordination or asking for permission.</p>
<p><a href="https://www.iana.org/domains/example">More information...</a></p>
</div>
</body></html>