Skip to content

Commit e1e3196

Browse files
authored
Create TestWiki.html
1 parent 354b593 commit e1e3196

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

Wiki/TestWiki.html

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>Wiki | Coding Hut</title>
5+
<link rel="stylesheet" href="style.css">
6+
</head>
7+
<body>
8+
<nav class="menu-container">
9+
<h1>Wiki Homepage</h1>
10+
<button onclick="createWiki()">➕ New Wiki Page</button>
11+
</nav>
12+
13+
<ul id="wiki-list"></ul>
14+
<div id="wiki-viewer"></div>
15+
16+
<!-- Firebase SDK -->
17+
<script type="module" src="https://www.gstatic.com/firebasejs/10.7.1/firebase-app.js"></script>
18+
<script type="module" src="https://www.gstatic.com/firebasejs/10.7.1/firebase-firestore.js"></script>
19+
20+
<script type="module" src="script.js"></script>
21+
</body>
22+
</html>

0 commit comments

Comments
 (0)