-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclient.html
More file actions
50 lines (50 loc) · 1.52 KB
/
client.html
File metadata and controls
50 lines (50 loc) · 1.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>PICode</title>
<link rel="stylesheet" href="./css/index.css" />
</head>
<body>
<header class="header-wrapper">
<div class="header-container">
<div class="header-content-wrapper">
<nav>
<a href="index.html" class="header-logo">
<img src="./image/picode-7.svg" alt="" />
<span>PICode</span>
</a>
</nav>
<ul class="header-content">
<li>
<a href="index.html">Server</a>
</li>
<li>
<a href="client.html">Client</a>
</li>
<li>
<a href="https://github.com/PICode-Team">GitHub</a>
</li>
</ul>
</div>
</div>
</header>
<section class="content-wrapper">
<div class="content-container">
<div id="content"></div>
</div>
</section>
<footer class="footer-wrapper">
<div class="footer-container">
Copyright 2021. PICode all rights reseved
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
<script>
fetch('https://raw.githubusercontent.com/PICode-Team/PICode-Client/develop/README.md')
.then(response => response.text())
.then(result => document.getElementById("content").innerHTML = marked.parse(result));
</script>
</body>
</html>