-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (24 loc) · 876 Bytes
/
index.html
File metadata and controls
24 lines (24 loc) · 876 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html>
<head>
<title>jmarkfen - GitHub Pages</title>
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
</head>
<body>
<div>
<a href=""></a>
</div>
<h2>IT 383 Integrative Programming and Technologies 2</h2>
<div id="container">
</div>
<script>
const url = 'https://raw.githubusercontent.com/jmarkfen/EVSU-BSIT-2022-2023-Semester2-OpenCards/main/IT%20383%20Integrative%20Programming%20and%20Technologies%202%20%5B3C%5D%5BOgrimen%5D/MVC.md';
fetch(url)
.then(response => response.text())
.then(markdown => {
const html = marked(markdown);
document.getElementById('container').innerHTML = html;
});
</script>
</body>
</html>