-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (32 loc) · 1.04 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
32
33
34
35
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Guide for CompChem@MU">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Guide4CompChem@MU</title>
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify/themes/buble.css">
<link rel="stylesheet" href="custom-styles.css"> <!-- Add your custom styles here -->
</head>
<body>
<nav>
<ul>
<li><a href="#/">Home</a></li>
<li><a href="#/coding/">Coding</a></li>
<li><a href="#/AQC/">Automated Quantum Chemistry</a></li>
<li><a href="#/chem_design/">Chemical Design</a></li>
<li><a href="#/quantum_machine_learning/">Quantum Chemical Machine Learning</a></li>
</ul>
</nav>
<div id="app"></div>
<script>
window.$docsify = {
name: 'Guide for CompChem@MU',
repo: 'PregY/guide4compchem-MU/'
}
</script>
<!-- Docsify v4 -->
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
</body>
</html>