Create documentation.html
Browse files- documentation.html +78 -0
documentation.html
ADDED
@@ -0,0 +1,78 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
6 |
+
<title>PARROT - Documentation</title>
|
7 |
+
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
|
8 |
+
</head>
|
9 |
+
<body>
|
10 |
+
|
11 |
+
<nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top">
|
12 |
+
<a class="navbar-brand" href="#">PARROT</a>
|
13 |
+
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav"
|
14 |
+
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
|
15 |
+
<span class="navbar-toggler-icon"></span>
|
16 |
+
</button>
|
17 |
+
<div class="collapse navbar-collapse" id="navbarNav">
|
18 |
+
<ul class="navbar-nav">
|
19 |
+
<li class="nav-item">
|
20 |
+
<a class="nav-link" href="index.html">Home</a>
|
21 |
+
</li>
|
22 |
+
<li class="nav-item active">
|
23 |
+
<a class="nav-link" href="#">Documentation</a>
|
24 |
+
</li>
|
25 |
+
<li class="nav-item">
|
26 |
+
<a class="nav-link" href="contact.html">Contact</a>
|
27 |
+
</li>
|
28 |
+
</ul>
|
29 |
+
</div>
|
30 |
+
</nav>
|
31 |
+
|
32 |
+
<div class="container mt-5">
|
33 |
+
<div class="row">
|
34 |
+
<div class="col-lg-8">
|
35 |
+
<h1>Documentation</h1>
|
36 |
+
|
37 |
+
<nav class="nav flex-column">
|
38 |
+
<a class="nav-link" href="#installation">Installation</a>
|
39 |
+
<a class="nav-link" href="#study-management">Study Management</a>
|
40 |
+
<a class="nav-link" href="#ai-models-management">AI Models Management</a>
|
41 |
+
<a class="nav-link" href="#patient-modeling">Patient Modeling</a>
|
42 |
+
<a class="nav-link" href="#plan-evaluation">Plan Evaluation</a>
|
43 |
+
</nav>
|
44 |
+
|
45 |
+
<section id="installation">
|
46 |
+
<h2>Installation</h2>
|
47 |
+
<p>Instructions for installing PARROT on your system...</p>
|
48 |
+
</section>
|
49 |
+
|
50 |
+
<section id="study-management">
|
51 |
+
<h2>Study Management</h2>
|
52 |
+
<p>Details on how to manage studies using PARROT...</p>
|
53 |
+
</section>
|
54 |
+
|
55 |
+
<section id="ai-models-management">
|
56 |
+
<h2>AI Models Management</h2>
|
57 |
+
<p>Guidelines for managing AI models in PARROT...</p>
|
58 |
+
</section>
|
59 |
+
|
60 |
+
<section id="patient-modeling">
|
61 |
+
<h2>Patient Modeling</h2>
|
62 |
+
<p>Information about patient modeling features in PARROT...</p>
|
63 |
+
</section>
|
64 |
+
|
65 |
+
<section id="plan-evaluation">
|
66 |
+
<h2>Plan Evaluation</h2>
|
67 |
+
<p>Details on evaluating treatment plans with PARROT...</p>
|
68 |
+
</section>
|
69 |
+
</div>
|
70 |
+
</div>
|
71 |
+
</div>
|
72 |
+
|
73 |
+
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
|
74 |
+
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js"></script>
|
75 |
+
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
|
76 |
+
|
77 |
+
</body>
|
78 |
+
</html>
|