-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (48 loc) · 1.46 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Model Demo Website</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Model Demo Website</h1>
<nav>
<ul>
<li><a href="#about">About/FAQs</a></li>
<li><a href="#team">Team</a></li>
<li><a href="#model-flow">Model Flow</a></li>
<li><a href="#demo">Demo Section</a></li>
</ul>
</nav>
</header>
<section id="about">
<h2>About/FAQs</h2>
<p>Model computation duration: <em>Details about how long the model takes to run.</em></p>
</section>
<section id="team">
<h2>Team Page</h2>
<p>Information about your team members goes here.</p>
</section>
<section id="model-flow">
<h2>Model Flow</h2>
<p>Explain the flow of your model, from input to output.</p>
</section>
<section id="demo">
<h2>Demo Section</h2>
<h3>Demo Patient Selection</h3>
<p>Description of how patients are selected for the demo.</p>
<h3>Here’s what's getting parsed</h3>
<p>Explain the data that is being parsed by the model.</p>
<h3>Drill down to read the note</h3>
<p>Include a sample note and allow users to drill down into the details.</p>
<h3>See Outcome</h3>
<p>Show the output or prediction made by the model.</p>
</section>
<footer>
<p>© 2024 Model Demo Team</p>
</footer>
</body>
</html>