-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (50 loc) · 1.48 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link
rel="icon"
href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>⚪️</text></svg>"
/>
<link rel="stylesheet" href="styles.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Snow White</title>
</head>
<body>
<img src="magic.jpg" alt="" />
<main>
<h1>Snow White</h1>
<hr />
<p>
If you're reading this text, congratulations! That means you have a nice
HDR-ready monitor and a fresh version of Google Chrome.
</p>
<hr />
<p>
This page tricks the browser into using a wider range of colors beyond
standard RGB.
</p>
<hr />
<p>
The grey backgroung is not actually grey, it is our usual #FFF white.
</p>
<div>
<div class="colors">
<div class="color red"></div>
<div class="color yellow"></div>
<div class="color green"></div>
<div class="color cyan"></div>
<div class="color blue"></div>
<div class="color pink"></div>
</div>
<p>
These colors also lay outside of even P3 color space and will be
clamped to white on regular monitors
</p>
</div>
<div>
<a href="https://github.com/ardov/hdr-web">GitHub</a>
</div>
</main>
</body>
</html>