-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (60 loc) · 1.45 KB
/
Copy pathindex.html
File metadata and controls
64 lines (60 loc) · 1.45 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>ML Project</title>
<style>
body {
font-family: sans-serif;
}
.container {
max-width: 50em;
margin-inline: auto;
margin-top: 5em;
}
.center {
text-align: center;
}
.nav-btns {
display: flex;
justify-content: center;
gap: 2em;
margin-inline: auto;
margin-top: 2em;
}
.button {
border: none;
background: rgb(235, 239, 243);
box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.3);
border-radius: 12px;
padding: 0.5em 1em;
transition: 0.3s;
font-size: 0.9em;
}
.button:hover {
/* transform: scale(1.01); */
box-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
}
a.button {
color: unset;
text-decoration: none;
}
a.button:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container center">
<h1>Machine Learning Submission Project</h1>
<p>
This is the submission project for <em>Mechine Learing</em> class in
<a href="https://english.tau.ac.il">Tel Aviv University</a>
</p>
<div class="nav-btns">
<a class="button" href="notebook.html">Interactive Notebook</a>
<a class="button primary" href="overview.html">Overview</a>
</div>
</div>
</body>
</html>