-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.html
More file actions
31 lines (26 loc) · 779 Bytes
/
template.html
File metadata and controls
31 lines (26 loc) · 779 Bytes
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 public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
<title>Kleadron Software - Template</title>
<link rel="stylesheet" type="text/css" href="resources/style.css" />
<!-- Settings for alert.js and header.js -->
<script src="resources/scripts/globals.js"></script>
</head>
<body>
<!-- Top of page -->
<script src="resources/scripts/header.js"></script>
<!-- For alerts and important info -->
<script src="resources/scripts/alert.js"></script>
<!-- Main content -->
<center>
<div class="main-content" align="left">
<h1>Template</h1>
<div id="grey-box">
<p>lorum ipsum</p>
</div>
</div>
</center>
<!-- Bottom of page -->
<script src="resources/scripts/footer.js"></script>
</body>
</html>