-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (30 loc) · 1.46 KB
/
index.html
File metadata and controls
31 lines (30 loc) · 1.46 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
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<meta name="VIEWPORT" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.css">
<link rel="stylesheet" href="index.css" type="text/css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>
<script type="text/javascript" src="index.js"></script>
<title>Wortuhr</title>
</head>
<body>
<br />
<div class="clock" id="idClock">
<span class="1">•</span> <span class="2">•</span><br />
<div id="idClockContent"> </div>
<span class="4">•</span> <span class="3">•</span><br />
<br />
</div>
<select id="idCbxLanguage">
<option value="en">English</option>
<option value="de_orig">Deutsch (11x10)</option>
<option value="de_small">Deutsch (11x9)</option>
<option value="nl_orig" selected>Nederlands (11x10)</option>
<option value="nl_small" selected>Nederlands (10x9)</option>
</select>
<input type="time" value="16:38" id="idTime" />
</body>
</html>