-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
50 lines (45 loc) · 1.75 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
<!doctype html>
<title>Random tree names</title>
<meta name=description content="Random tree names for all your things!">
<meta name=viewport content="width=device-width, initial-scale=1">
<meta charset=utf-8>
<link rel=icon type=image/png href=vendor/favicon-196x196.png sizes=196x196>
<link rel=icon type=image/png href=vendor/favicon-96x96.png sizes=96x96>
<link rel=icon type=image/png href=vendor/favicon-32x32.png sizes=32x32>
<link rel=icon type=image/png href=vendor/favicon-16x16.png sizes=16x16>
<link rel=icon type=image/png href=vendor/favicon-128.png sizes=128x128>
<link rel=stylesheet href=css/style.css>
<link rel=stylesheet href=css/clipboard.css>
<div id=aligner>
<main>
<section>
<header>
<h1>
Random tree names
<span>… for all your things!</span>
</h1>
</header>
<select onchange=window.setLanguage(event)>
<option value=null>All</option>
<option value=en>English</option>
<option value=de>German</option>
</select>
<div class="input-group">
<input id=text-field type=text readonly>
<span class="input-group-button">
<button class="btn" data-clipboard-target=#text-field>
<img class="clippy" src=vendor/clippy.svg alt="Copy to clipboard">
</button>
</span>
</div>
<p>
<button onclick=window.getTreeName(event) class="btn new-name-btn">Get another tree name!</button>
</p>
</section>
<footer>
Tree name sources are listed <a href=https://github.com/pguth/random-tree-names#tree-name-sources>here</a>.<br>
Source code hosted on <a class="github" href=https://github.com/pguth/random-tree-names>Github</a>.
</footer>
</main>
</div>
<script src=bundle.js></script>