-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprojects.html
More file actions
53 lines (53 loc) · 2.09 KB
/
Copy pathprojects.html
File metadata and controls
53 lines (53 loc) · 2.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sacul</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Space+Grotesk:wght@700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="src/projects.css">
</head>
<body>
<div class="modern-bg"></div>
<header>
<h1 class="about-title">About me!</h1>
</header>
<main class="modern-card">
<img src="./assets/sacul_avatar.png" alt="Sacul Avatar" class="modern-avatar" />
<h2 class="main-title">Projects</h2>
<div>
<li>
<p class="subtitle">
<a href="https://github.com/Sacul0457/Freelist-Allocator" target="_blank">Freelist-Allocator - C</a>
</p>
</li>
<li>
<p class="subtitle">
<a href="https://github.com/Sacul0457/GenericItem" target="_blank">GenericItem - C</a>
</p>
</li>
<li>
<p class="subtitle">
<a href="https://github.com/Sacul0457/if-else-is-even" target="_blank">if-else-is-even - PY</a>
</p>
</li>
<li>
<p class="subtitle">
<a href="https://github.com/Sacul0457/perf_runner" target="_blank">perf_runner - PY</a>
</p>
</li>
</div>
<div class="modern-socials">
<a href="https://discord.com/users/802167689011134474" class="modern-icon-btn" title="Discord" target="_blank" rel="noopener">
<img src="./assets/discord.png" alt="Discord" class="modern-icon-img" />
</a>
<a href="https://github.com/Sacul0457" class="modern-icon-btn" title="GitHub" target="_blank" rel="noopener">
<img src="./assets/github.png" alt="GitHub" class="modern-icon-img" />
</a>
</div>
</main>
<a href="index.html" class="back-btn" title="Home">
Home
</a>
</body>
</html>