-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
31 lines (31 loc) · 1.49 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>ocen</title>
<link rel="icon" href="imgs/favicon.png" type="image/x-icon">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono&family=Montserrat&display=swap" rel="stylesheet">
<link rel="stylesheet" href="CSS/reset.css">
<link rel="stylesheet" href="CSS/styles.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/showdown/2.1.0/showdown.min.js" integrity="sha512-LhccdVNGe2QMEfI3x4DVV3ckMRe36TfydKss6mJpdHjNFiV07dFpS2xzeZedptKZrwxfICJpez09iNioiSZ3hA==" crossorigin="anonymous" referrerpolicy="no-referrer"></script> <script src="JS/HTMLGeneration.js" defer></script>
<script src="JS/processData.js" defer></script>
<script src="JS/navigation.js" defer></script>
<script src="JS/search.js" defer></script>
</head>
<body>
<nav>
<a id="banner" href="#ocen"><img src="imgs/ocen-banner.png" alt="ocen logo"></a>
<section id="sideNav"></section>
</nav>
<main>
<input type="search" id="searchInput" placeholder="Search the docs..." autocomplete="off" spellcheck="false">
<div id="breadcrumbDiv">
<h1 id="breadcrumb"></h1>
<a id="sourceLink"></a>
</div>
<section id="main"></section>
</main>
</body>
</html>