-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
27 lines (26 loc) · 806 Bytes
/
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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>Stopwatch</title>
<link rel="stylesheet" href="./css/app.css">
</head>
<body>
<div class="display">
<label class="title">Stopwatch</label><br/>
<a class="option hoverHighlight" href="./global.html">Script</a>
<a class="option hoverHighlight" href="./module.html">Module</a>
<a class="option hoverHighlight" href="./widget.html">Dojo Widget</a>
</div>
<br/>
<div class="display">
<label class="title">Stylized</label><br/>
<a class="option hoverHighlight" href="./stylized.html">Reusing Stopwatch</a>
</div>
<br/>
<div class="display">
<label class="title">Countdown</label><br/>
<a class="option hoverHighlight" href="./countdown.html">Reusing Stopwatch</a>
</div>
</body>
</html>