Window / index.html
Aohanah's picture
Update index.html
4e2f9d9 verified
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title><span style="font-size: 40px;font-family: Arial;font-weight: bold;">Multi-Glau</span></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;
width: 300px; /* 设置按钮的固定宽度 */
font-family: Arial; /* 设置按钮上的字体为 Arial */
}
.btn:hover {
background-color: #008CBA;
}
</style>
</head>
<body>
<div class="card">
<h1>Multi-Glau</h1>
<p style="text-align: justify;"><span style="font-size: 24px;font-family: Arial;">Welcome to Multi-Glau! Please click on the required module to proceed to the next step.</span></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 href="javascript:void(0)" onclick="customRedirect('https://huggingface.co/spaces/Aohanah/Exp3')" class="btn">Definitive Diagnosis Module</a>
</div>
<script>
function customRedirect(url) {
//window.location.href = url;
window.open(url);
}
</script>
</body>
</html>