-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (36 loc) · 1.34 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Machine Learning Projects Portfolio</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Machine Learning Projects Portfolio</h1>
<p class="tagline">Projects that demonstrate my passion and skills in AI and Machine Learning.</p>
</header>
<main>
<section id="projects">
<!-- Project cards will be dynamically added here -->
</section>
</main>
<div id="project-modal" class="modal">
<div class="modal-content notebook">
<span class="close">×</span>
<h2 id="modal-title" class="notebook-title"></h2>
<div id="notebook-cells">
<!-- Cells will be dynamically added here -->
</div>
<a id="modal-link" href="#" target="_blank" class="notebook-link">View on GitHub</a>
</div>
</div>
<footer>
<p>Contact me: <a href="mailto:[email protected]">[email protected]</a></p>
<p>© 2023 Alvaro Lazarus. All rights reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>