-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
191 lines (163 loc) · 4.47 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
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Landing Page</title>
<style>
/* General Styles */
body {
margin: 0;
font-family: Arial, sans-serif;
background-color: white;
color: #333;
text-align: center;
padding: 0;
display: flex;
justify-content: center;
align-items: flex-start;
min-height: 100vh;
flex-direction: column;
padding-top: 50px; /* Space for header */
overflow: auto;
}
/* Header Styling */
header {
width: 100%;
background-color: rgb(225, 206, 227);
color: #333;
padding: 20px 0;
position: absolute; /* Fixed at the top */
top: 0px;
text-align: center;
}
h1 {
font-size: 2.5rem;
margin-bottom: 10px;
}
p {
font-size: 1rem;
margin-bottom: 30px;
}
/* Image Styling */
.image-container img {
width: 100%;
max-width: 600px;
height: auto;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.my_image {
max-width: 100vw;
margin:auto;
margin-bottom: 0;
border-radius: 100px;
}
/* Link Styles */
.links {
display: flex;
gap: 20px;
justify-content: center;
margin:auto;
margin-bottom: 0;
}
.links a {
text-decoration: none;
color: #5a4b71;
font-size: 1.1rem;
padding: 10px 20px;
border: 2px solid #5a4b71;
border-radius: 5px;
transition: background-color 0.3s ease, color 0.3s ease;
}
.links a:hover {
background-color: #5a4b71;
color: white;
}
/* Author Section */
.authors {
margin-top: 40px;
}
.authors h2 {
font-size: 1.8rem;
margin-bottom: 15px;
}
.authors p {
font-size: 1rem;
color: #5a4b71;
}
/* Contact Section */
.contact {
margin-top: 40px;
padding: 20px;
background-color: #f4f0f8;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.contact h2 {
font-size: 1.8rem;
margin-bottom: 10px;
}
.contact p {
font-size: 1rem;
color: #5a4b71;
}
/* Footer Styling */
footer {
/*width: 100%;*/
background-color: rgb(225, 206, 227); /* Same color as the header */
color: #333;
padding-bottom: 40px;
padding-top:0px;
bottom: 40px;
text-align: center;
margin:auto;
margin-bottom:0px;
width:100vw;
}
footer p {
font-size: 1rem;
margin: 0;
}
/* Responsive Styles */
@media (max-width: 768px) {
h1 {
font-size: 1.7rem;
}
p {
font-size: 0.9rem;
}
.links {
flex-direction: column;
gap: 15px;
margin-bottom: auto;
}
.my_image {
margin-top: 40vw;
}
}
</style>
</head>
<body>
<!-- Header Section -->
<header>
<h1>Machine Learning in Digital Pathology</h1>
</header>
<img class="my_image" src="https://via.placeholder.com/600x300" alt="Example Image">
<!-- Authors Section -->
<!-- Contact Section -->
<!-- Footer Section -->
<div class="links">
<a href="https://github.com/Leo-Berman/Machine-Learning-Applications-In-Digital-Pathology">GitHub</a>
<a href="https://isip.piconepress.com/projects/pabcc/">ISIP Project Page</a>
<a href="https://www.precedenceresearch.com/digital-pathology-market">[1]</a>
<a href="https://journals.plos.org/plosone/article?id=10.1371/journal.pone.0213209#pone.0213209.s003">[2]</a>
</div>
<footer>
<h2>Contact Us</h2>
<p>Leo Berman Email: [email protected]</p>
<p>Albert Bulik Email: [email protected]</p>
<p>Yuan Nghiem Email: [email protected]</p>
</footer>
</body>
</html>