File size: 1,807 Bytes
8c9d3d3
 
dc9c504
 
 
09eed67
dc9c504
 
 
 
 
 
 
 
 
 
 
 
 
 
25f1b3d
ea0b4bf
1f84935
dc9c504
 
8c429ee
71d30bc
dc9c504
 
64fb338
 
dc9c504
 
 
 
7c25f26
4e2f9d9
8d60a01
74d18fd
8d60a01
dc9c504
74d18fd
 
 
1760ad9
6b3bb3a
74d18fd
 
dc9c504
8c9d3d3
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
<!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>