-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBody.html
70 lines (63 loc) · 2.46 KB
/
Body.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Asperjasp's Portfolio</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header class="header">
<h1>Asperjasp's Portfolio</h1>
<nav class="language-selector">
<button><img src="flags/us.png" alt="English"> English</button>
<button><img src="flags/spain.png" alt="Spanish"> Español</button>
<button><img src="flags/japan.png" alt="Japanese"> 日本語</button>
</nav>
</header>
<main class="main-content">
<!-- About Me Section -->
<section id="about">
<h2>About Me</h2>
<p>Welcome! I’m a Computer Science student specializing in Machine Learning and AI. This is where I showcase my projects and passions.</p>
</section>
<!-- Research Projects Section -->
<section id="projects">
<h2>Research Projects</h2>
<div class="project-card">
<h3>Project Title</h3>
<p>Short description of the project. Include goals, tech stack, and achievements.</p>
<a href="https://github.com/Asperjasp" target="_blank">View on GitHub</a>
</div>
<!-- Repeat for other projects -->
</section>
<!-- Blog Section -->
<section id="blog">
<h2>Blog</h2>
<p>Write about your journey, experiments, and findings.</p>
</section>
<!-- Book Section -->
<section id="book">
<h2>My Book</h2>
<p>A placeholder for updates and chapters of your upcoming book.</p>
</section>
<!-- Music Section -->
<section id="music">
<h2>Music</h2>
<p>Share your compositions or playlists here.</p>
</section>
<!-- Social Media Links -->
<section id="social-media">
<h2>Connect with Me</h2>
<div class="social-icons">
<a href="#" target="_blank"><img src="icons/youtube.png" alt="YouTube"></a>
<a href="#" target="_blank"><img src="icons/linkedin.png" alt="LinkedIn"></a>
<a href="#" target="_blank"><img src="icons/instagram.png" alt="Instagram"></a>
</div>
</section>
</main>
<footer class="footer">
<p>© 2024 Asperjasp. All rights reserved.</p>
</footer>
</body>
</html>