-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmain.html
More file actions
107 lines (107 loc) · 3.59 KB
/
main.html
File metadata and controls
107 lines (107 loc) · 3.59 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>OpenFlexure Microscope</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f0f0f0;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
header {
background-color: #C5247F;
color: white;
text-align: center;
padding: 20px 0;
}
.logo {
max-width: 300px;
}
.icon-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
margin-top: 40px;
}
.icon {
background-color: #C5247F;
border-radius: 10px;
padding: 20px;
text-align: center;
}
.icon img {
max-width: 100px;
margin-bottom: 10px;
}
.icon a {
color: white;
text-decoration: none;
font-weight: bold;
}
</style>
</head>
<body>
<header>
<div class="container">
<a href="https://openflexure.org/projects/microscope/">
<img src="images/OFM logo.jpeg" alt="OpenFlexure Microscope Logo" class="logo">
</a>
<h1>OpenFlexure Viewer</h1>
</div>
</header>
<main class="container">
<div class="icon-grid">
<div class="icon">
<a href="https://dgrosen.github.io/OpenFlexureViewer/AIN3.html">
<img src="images/AIN3.jpg" alt="AIN3 Icon">
<p>Anal biospy</p>
</a>
</div>
<div class="icon">
<a href="https://dgrosen.github.io/OpenFlexureViewer/CHL.html">
<img src="images/classic HL.jpg" alt="CHL Icon">
<p>Lymph node biopsy</p>
</a>
</div>
<div class="icon">
<a href="https://dgrosen.github.io/OpenFlexureViewer/liverEMH.html">
<img src="images/liver EMH.jpg" alt="Liver EMH Icon">
<p>Liver biopsy</p>
</a>
</div>
<div class="icon">
<a href="https://dgrosen.github.io/OpenFlexureViewer/prostate.html">
<img src="images/prostate 3+3.jpg" alt="Prostate Icon">
<p>Prostate biopsy</p>
</a>
</div>
<div class="icon">
<a href="https://dgrosen.github.io/OpenFlexureViewer/fundic_gland_polyp.html">
<img src="images/fundic_gland_polyp.jpg" alt="fundic_gland_polyp Icon">
<p>Stomach biopsy</p>
</a>
</div>
<div class="icon">
<a href="https://dgrosen.github.io/OpenFlexureViewer/PAP.html">
<img src="images/PAP.jpg" alt="PAP Icon">
<p>Cervical cytology</p>
</a>
</div>
<div class="icon">
<a href="https://dgrosen.github.io/OpenFlexureViewer/COLON_ADC.html">
<img src="images/colon adenoca.jpg" alt="Colon adenocarcinoma Icon">
<p>Colon biopsy</p>
</a>
</div>
</div>
</main>
</body>
</html>