-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.html
62 lines (61 loc) · 1.81 KB
/
example.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
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="color-scheme" content="dark light" />
<title>Trin Example: Humpty Dumpty</title>
<!--<link rel="icon" type="image/png" href="icons/32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="icons/256.png" sizes="256x256" />-->
<link rel="stylesheet" href="trin.css" />
<link rel="prefetch" href="trin.js" />
<script type="module" src="trinUI.js?init=true"></script>
<style>
/* colors */
body {
--bg-color: white;
--text-color: #202020;
}
@media (prefers-color-scheme: dark) {
body {
--bg-color: #1b1e20;
--text-color: #c8c8c8;
}
}
/* small-screen */
@media (max-width: 820px) {
body {margin: 1em;}
}
@media (min-width: 821px) {
body {margin: 1em 2em;}
}
/* generic */
body {
font-family: BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Open Sans", "Helvetica Neue", sans-serif;
color: var(--text-color);
background-color: var(--bg-color);
line-height: 1.4;
}
p {
font-size: 1.4em;
}
</style>
</head>
<body>
<h1>Humpty Dumpty</h1>
<p style="color: #808080;">Click on the <span class="no-trin-scaff">ट्र</span>
icon to Transliterate this poem.</p>
<p>
Humpty Dumpty बैठे थे दीवार पे।
<br>Humpty Dumpty गिर पड़े धड़ाम से।
<br>ರಾಜನ ಪುರುಷರು ಮತ್ತು ರಾಜನ ಕುದುರೆ,
<br>ಹಂಪ್ಟಿಯನ್ನು ಒಟ್ಟಿಗೆ ಸೇರಿಸಿ.
</p>
<p>
Humpty ਕੰਧ 'ਤੇ ਬੈਠਾ ਸੀ।
<br>Humpty ਇੱਕ ਠਹਾਕੇ ਨਾਲ ਡਿੱਗ ਪਿਆ।
<br>রাজার লোক আর রাজার ঘোড়া।
<br>একসাথে Humpty যোগ করুন।
</p>
</body>
</html>