-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCOMP2013Task1.html
71 lines (66 loc) · 1.25 KB
/
COMP2013Task1.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE HTML>
<html>
<head>
<title>Task1</title>
<style>
h1
{
text-align: center;
}
h2
{
text-align: center;
}
h3
{
text-align: center;
}
p
{
text-align: center;
}
#timedate
{
bottom: 0;
left: 0;
position: fixed;
right: 0;
text-align: center;
}
#frame
{
width: 50%;
height: 750px;
margin: 0 auto;
display: block;
}
</style>
<!-- Make sure you've included jQuery before jquery-github-widget.js. -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<!-- Load jquery-github-widget.js. -->
<script src="github.commits.widget.js" type="text/javascript"></script>
</head>
<body>
<a href="index.html">Home</a>
<h1> Ed James </h1>
<p> Hi </p>
<br>
<br>
<h1> SmartScarf </h1>
<h2> Too smart for me </h2>
<div id="github-commits">Github</div>
<iframe id="frame" src="http://jamese07.wordpress.com/" frameborder="0" allowfullscreen></iframe>
<script>
$(function() {
$('#github-commits').githubInfoWidget(
{ user: 'SnubbleJr', repo: 'COMP2013Task3', branch: 'master', last:5 });
});
</script>
<footer>
This page was last modified:
<script>
document.write(document.lastModified);
</script>
</footer>
</body>
</htmal>