Skip to content

Commit

Permalink
Utils webpage
Browse files Browse the repository at this point in the history
  • Loading branch information
wellington36 committed Mar 14, 2024
1 parent 55dca09 commit 53ee51a
Show file tree
Hide file tree
Showing 3 changed files with 115 additions and 0 deletions.
Binary file not shown.
3 changes: 3 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ <h1>My Links</h1>
<!-- Abstract of tacd - A2 -->
<a href="AbstractTACD/index.html">Read Abstract of TACD</a>

<!-- Abstract of tacd - A2 -->
<a href="AbstractTACD/index.html">Read Abstract of TACD</a>

<!-- Test page -->
<a href="Test page/index.html">Check Out Test Page</a>
</body>
Expand Down
112 changes: 112 additions & 0 deletions utils/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,112 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Storage Website</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f5f5f5;
}
header {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
h1 {
margin: 0;
font-size: 24px;
}
.container {
max-width: 800px;
margin: 20px auto;
padding: 20px;
background-color: #fff;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.link-list {
list-style-type: none;
padding: 0;
}
.link-list li {
margin-bottom: 10px;
}
.link-list li a {
text-decoration: none;
color: blue;
display: block;
padding: 10px;
background-color: #f9f9f9;
border-radius: 5px;
transition: background-color 0.3s ease;
}
.link-list li a:hover {
background-color: #eaeaea;
}
.note {
margin-bottom: 10px;
}
.pdf {
margin-bottom: 10px;
}
</style>
</head>
<body>

<header>
<h1>My Storage Website</h1>
</header>

<div class="container">

<h2>Max's projects</h2>
<ul class="link-list">
<!--Replace '#' with your actual link URLs and 'Link Name' with the name of the link-->
<li><a href="https://github.com/maxbiostat/brms">[Github] brms</a></li>
<li><a href="https://github.com/maxbiostat/stan_summer">[Github] maxbiostat/stan_summer</a></li>
<li><a href="https://github.com/wellington36/stan_summer">[Github] wellington36/stan_summer</a></li>
<li><a href="https://github.com/maxbiostat/truncation_tests">[Github] maxbiostat/truncation_tests</a></li>
<li><a href="https://mc-stan.org/cmdstanr/">[Stan] Documentation</a></li>
<li><a href="https://discourse.mc-stan.org">[Stan] Forum</a></li>
</ul>

<h2>Probabilidade</h2>
<ul class="link-list">
<li><a href="https://sites.google.com/view/probfgv2024">[Site] Materias da disciplina</a></li>
</ul>
<div class="link-list">
<li><a href="../files/Probabilidade_Um_curso_de_nivel_intermed.pdf">[PDF] Probabilidade - Um curso de nivel intermediario</a></li>
</div>

<h2>Analise Real</h2>

<h2>Álgebra Linear</h2>

<!--
<h2>Links</h2>
<ul class="link-list">
Replace '#' with your actual link URLs and 'Link Name' with the name of the link
<li><a href="#">Link Name</a></li>
Add more links as needed
</ul>
<h2>Notes</h2>
<div class="note">
Add your notes here
<p>This is a sample note.</p>
</div>
<h2>PDFs</h2>
<div class="link-list">
<li><a href="#">Pdf name</a></li>
</div>
-->
</div>

</body>
</html>

0 comments on commit 53ee51a

Please sign in to comment.