-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (26 loc) · 859 Bytes
/
index.html
File metadata and controls
29 lines (26 loc) · 859 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
25
26
27
28
29
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<title>PeerPrep Client</title>
<!-- Firebase -->
<script src="https://www.gstatic.com/firebasejs/7.6.2/firebase.js"></script>
<!-- CodeMirror -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.17.0/codemirror.js"></script>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.17.0/codemirror.css"
/>
<!-- Firepad -->
<link
rel="stylesheet"
href="https://firepad.io/releases/v1.5.10/firepad.css"
/>
<script src="https://firepad.io/releases/v1.5.10/firepad.min.js"></script>
</head>
<body style="background-color: #F5F9FA">
<div id="app" />
<script src="./bundle.js"></script>
</body>
</html>