-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (23 loc) · 845 Bytes
/
index.html
File metadata and controls
25 lines (23 loc) · 845 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Wiki</title>
<link rel="stylesheet" href="style.css">
<script defer src="script.js?v=<?= time(); ?>"></script>
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script><!-- what is this for ? -->
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
</head>
<body>
<div id="header-placeholder"></div>
<main>
<h2>Welcome to The Ant Colony Wiki</h2>
<p>This is the home page of the Ant Colony Wiki, here you have access to all the project of the Ant Colony team.</p>
</main>
<footer>
<p>©AntColony</p>
</footer>
<script src="header.js"></script>
</body>
</html>