-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (67 loc) · 2.73 KB
/
Copy pathindex.html
File metadata and controls
77 lines (67 loc) · 2.73 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
<!DOCTYPE html>
<html>
<head>
<title>W3.CSS Template</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Raleway">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
body,h1 {font-family: "Raleway", Arial, sans-serif}
h1 {letter-spacing: 6px}
.w3-row-padding img {margin-bottom: 12px}
</style>
</head>
<body>
<!-- !PAGE CONTENT! -->
<div class="w3-content" style="max-width:1500px">
<!-- Header -->
<header class="w3-panel w3-center w3-opacity" style="padding:128px 16px">
<h1 class="w3-xlarge">DECILE for Medical Domain</h1>
<h1>Example Workbooks</h1>
<div class="w3-padding-32">
<div class="w3-bar w3-border">
<a href="#basics" class="w3-bar-item w3-button">Python Basics</a>
<a href="#" class="w3-bar-item w3-button w3-light-grey">Medical Datasets Examples</a>
<a href="#" class="w3-bar-item w3-button">MedMNIST Examples</a>
<a href="#" class="w3-bar-item w3-button w3-hide-small">Advanced ML</a>
</div>
</div>
</header>
<!-- Photo Grid -->
<div class="w3-row-padding w3-grayscale" style="margin-bottom:128px">
<div class="w3-half" name="basics">
<ul>
<li>
<a href="https://colab.research.google.com/drive/1YU-dL4PrC959-I6J9nOQZAqF8z0-f-Y7" target="_blank">Python Basics</a>
</li>
<li>
<a href="https://colab.research.google.com/drive/1MmFyYB9mWS2awA_LJoIp4Nh7B-JfirWj" target="_blank">Panda Basics 1</a>
</li>
<li>
<a href="https://colab.research.google.com/drive/1o0tefp2LjdasSAgy5svGrMaXtM4g39m0" target="_blank">Panda Basics 2</a>
</li>
<li>
<a href="https://colab.research.google.com/drive/16KkIy4u62hqlBxoG5cDvY35bZlXQlMWw" target="_blank">Panda Basics 3</a>
</li>
<li>
<a href="https://colab.research.google.com/drive/1gEQah-zaFgs5kTVmbYGPwasvKPrt0ByS" target="_blank">Panda Basics 3</a>
</li>
</ul>
</div>
</div>
<!-- End Page Content -->
</div>
<!-- Footer -->
<footer class="w3-container w3-padding-64 w3-light-grey w3-center w3-large">
<i class="fa fa-facebook-official w3-hover-opacity"></i>
<i class="fa fa-instagram w3-hover-opacity"></i>
<i class="fa fa-snapchat w3-hover-opacity"></i>
<i class="fa fa-pinterest-p w3-hover-opacity"></i>
<i class="fa fa-twitter w3-hover-opacity"></i>
<i class="fa fa-linkedin w3-hover-opacity"></i>
<p>Powered by <a href="https://www.w3schools.com/w3css/default.asp" target="_blank" class="w3-hover-text-green">w3.css</a></p>
</footer>
</body>
</html>