-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
79 lines (67 loc) · 2.58 KB
/
index.html
File metadata and controls
79 lines (67 loc) · 2.58 KB
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
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Parallel Corpus Creation</title>
<style>
a.button {
-webkit-appearance: button;
-moz-appearance: button;
appearance: button;
text-decoration: none;
color: initial;
background-color: #ECB142;
border-radius: 2px;
border: 1px solid #ECD9CF;
color: white;
padding: 4px 4px;
text-align: center;
font-size: 18px;
font-weight: bold;
cursor: pointer;
}
a.button:hover {
background-color: #E87131;
}
table tr td {
font-size: 18px;
font-weight: bold;
}
</style>
</head>
<body>
<h2 align="center">Bilingual Book Alignments</h2>
<br />
<br />
<div id="main" align="center">
<table width="auto" cellspacing="20" cellpadding="4">
<tr>
<td width="auto" align="left">Crime And Punishment(EN) - Verbrechen und Strafe(DE)</td>
<td align="center"><a class="button" href="404.html">View HTML</a></td>
</tr>
<tr>
<td width="auto" align="left">Crime And Punishment(EN) - Преступление и наказание(RU)</td>
<td align="center"><a class="button" href="404.html">View HTML</a></td>
</tr>
<tr>
<td width="auto" align="left">The Gambler(EN) - Der Spieler(DE)</td>
<td align="center"><a class="button" href="xslt/dost_gambler_ende.html">View HTML</a></td>
</tr>
<tr>
<td width="auto" align="left">The Gambler(EN) - Игрок(RU)</td>
<td align="center"><a class="button" href="xslt/dost_gambler_enru.html">View HTML</a></td>
</tr>
<tr>
<td width="auto" align="left">Notes from Underground(EN) - Aufzeichnungen aus dem Kellerloch(DE)</td>
<td align="center"><a class="button" href="xslt/dost_under_ende.html">View HTML</a></td>
</tr>
<tr>
<td width="auto" align="left">Notes from Underground(EN) - Записки из подполья(RU)</td>
<td align="center"><a class="button" href="xslt/dost_under_enru.html">View HTML</a></td>
</tr>
</table>
</div>
</body>
</html>