Window / index.html
Aohanah's picture
Update index.html
4507e65 verified
raw
history blame
1.38 kB
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Multi-Glau</title>
<style>
body {
text-align: center;
}
.card {
margin: 20px auto;
padding: 20px;
border: 1px solid #ccc;
border-radius: 5px;
max-width: 400px;
}
.btn {
display: inline-block;
margin: 10px;
padding: 10px 20px;
background-color: #00B4F4;
color: #fff;
text-decoration: none;
border-radius: 5px;
}
.btn:hover {
background-color: #008CBA
;
}
</style>
</head>
<body>
<div class="card">
<h1>Multi-Glau</h1>
<p>Welcome to Multi-Glau! Please click on the required model to proceed to the next step.</p>
<a href="javascript:void(0)" onclick="customRedirect('https://huggingface.co/spaces/Aohanah/Exp1')" class="btn">Screening module</a>
<a href="javascript:void(0)" onclick="customRedirect('https://huggingface.co/spaces/Aohanah/Exp2')" class="btn">Pre-Diagnosis Module</a>
<a class="btn">Definitive diagnosis module is being deployed.</a>
</div>
<script>
function customRedirect(url) {
//window.location.href = url;
window.open(url);
}
</script>
</body>
</html>