-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (23 loc) · 733 Bytes
/
index.html
File metadata and controls
23 lines (23 loc) · 733 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tiny TEI Template</title>
<script src="https://cdn.jsdelivr.net/gh/silencesys/dh--tiny-tei-template
@master/assets/CETEI.js"></script>
<link rel="stylesheet" href="config.css">
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/gh/silencesys/dh--tiny-tei-template
@master/assets/styles.css">
<link rel="stylesheet" href="assets/styles.css">
</head>
<body>
<div id="TEI"></div>
</body>
<script>
var CETEIcean = new CETEI()
CETEIcean.getHTML5("xml/example.xml", function(data) {
document.getElementById("TEI").appendChild(data)
})
</script>
</html>