-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/Vereis/jrlscript
- Loading branch information
Showing
3 changed files
with
124 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>CO600 - Project Corpus</title> | ||
<style type="text/css"> | ||
* { | ||
font-family: "Verdana", Times, Sans-serif; | ||
} | ||
h1 { | ||
text-align: center; | ||
color: #004091 | ||
} | ||
h2 { | ||
text-align: center; | ||
color: #004091 | ||
} | ||
table { | ||
margin-left:auto; | ||
margin-right:auto; | ||
border: 2px solid black; | ||
border-collapse:collapse; | ||
} | ||
td, th { | ||
border: 1px solid #666666; | ||
padding: 3px; | ||
} | ||
th.highlight { | ||
background: #004091; | ||
color: white; | ||
} | ||
#logo-kent { | ||
height: 80px; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<h1>CO600 - Project Corpus</h1> | ||
<table id="details"> | ||
<tbody> | ||
<tr> | ||
<th>Project Title</th> | ||
<td>Jarlang</td> | ||
</tr> | ||
<tr> | ||
<th>Students</th> | ||
<td>Chris Bailey (cb661), Andrew Johnson (apj8) and Nick Laine (nl227)</td> | ||
</tr> | ||
<tr> | ||
<th>Supervisor</th> | ||
<td>Scott Owens (S.A.Owens@kent.ac.uk)</td> | ||
</tr> | ||
<tr> | ||
<th>Date</th> | ||
<td>28/03/2018</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
<h2>Index of Corpus</h2> | ||
<table id="index"> | ||
<tbody> | ||
<tr> | ||
<th>Ref.</th> | ||
<th>Document Title</th> | ||
<th>Author(s)</th> | ||
<th>Quality Assurance</th> | ||
<th>Best Work (High Quality or Intellectually Challenging) *</th> | ||
</tr> | ||
<tr> | ||
<th colspan="5" class="highlight">todo</th> | ||
</tr> | ||
<tr> | ||
<td>todo</td> | ||
<td>todo</td> | ||
<td>todo</td> | ||
<td>todo</td> | ||
<td>todo</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
</body> | ||
</html> |