-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
22 lines (22 loc) · 963 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
<!DOCTYPE html>
<!-- This is an HTML5 file -->
<html>
<!-- The root element -->
<head>
<!-- Title, scripts & styles can go here -->
<title>Digital Clock</title>
<link rel="stylesheet" href="modules/digitalclock/css/Clock.css">
</head>
<body>
<!-- The body holds the content of the document. -->
<h1>Digital Clock</h1>
<!-- Display a title. -->
<span id="clock"></span> <!-- We will insert the time into this element. -->
<!-- Add your modules src here -->
<script language="javascript" src="modules/digitalclock/src/DigitalClock.js"></script>
<script language="javascript" src="modules/basics/src/Basics.js"></script>
<script language="javascript" src="modules/actioninjection/src/ActionInjection.js"></script>
<script language="javascript" src="modules/objectliterals/src/ObjectLiterals.js"></script>
<script language="javascript" src="modules/objectprototype/src/ObjectPrototype.js"></script>
</body>
</html>