Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
aida-mlscope authored Sep 15, 2024
1 parent c07dfda commit 32838d7
Showing 1 changed file with 23 additions and 2 deletions.
25 changes: 23 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>MLScope</title>
<title>Course Content</title>
<style>
:root {
--dark-blue: #1a365d;
Expand Down Expand Up @@ -93,6 +93,23 @@
a:hover {
text-decoration: underline;
}

.btn {
cursor: pointer;
background-color: var(--orange);
color: var(--dark-blue);
font-weight: 700;
border: none;
width: 200px;
height: 50px;
padding: 5px;
margin: 20px;
transition: 0.8s;
}
.btn:hover {
color: var(--orange);
background-color: var(--dark-blue);
}
</style>
</head>
<body>
Expand All @@ -111,6 +128,11 @@

<div class="container">
<h1>MLScope</h1>
<center>
<a href="https://forms.gle/fGnFDcE8JiHc9ZJh8"
><button class="btn">Week 1 Submission</button></a
>
</center>
<div id="content"></div>
</div>

Expand Down Expand Up @@ -149,7 +171,6 @@ <h5>Bonus</h5>
<li>Simple Decision Tree</li>
<li>Random Forest</li>
<li>PyTorch</li>
<li>Neural Networks</li>
</ul>
<h4>Useful Package Documentation:</h4>
Expand Down

0 comments on commit 32838d7

Please sign in to comment.