-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.html
54 lines (50 loc) · 1.2 KB
/
template.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
51
52
53
<!DOCTYPE html>
<html>
<head>
<title>My Template</title>
<link rel="stylesheet" type="text/css" href="./CSS/home.css">
<style></style>
</head>
<body>
<H1> My Template </H1>
<div id="container"></div>
<div id="footer">
<h3> Document Information </h3>
<ul>
<li>
Date: 2015/02/03
</li>
<li>
Reference:
<ul>
<li><a target="_blank" href="http://www.github.com">github</a></li>
<li><a target="_blank" href="http://www.google.com">google</a></li>
</ul>
</li>
</ul>
</div>
</body>
</html>
<script src="./LIB/jquery/jquery-2.1.3.js"></script>
<script src="./LIB/home.js"></script>
<script type="text/javascript">
/* Title here
Desc ...
more info ......
*/
(function(){
try{
console.log("Code snippet");
}catch(e){
console.error(e.message);
}
}());
/* Title 2 */
(function(){
try{
console.log("Code snippet2");
}catch(e){
console.error(e.message);
}
}());
</script>