-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
151 lines (132 loc) · 6.8 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
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Semih Yılmaz - Links</title>
<!-- Favicon -->
<link rel="icon" href="https://avatars.githubusercontent.com/u/85266757?v=4" type="image/png" />
<!-- Font Awesome Icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Karla:wght@400;700&family=Space+Mono:wght@400;700&display=swap"
rel="stylesheet">
<!-- Core theme CSS -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Animated Background Overlay -->
<div class="background-overlay"></div>
<!-- Main Content Container -->
<div class="container">
<header class="profile-header">
<button id="profilePicButton" class="profile-picture-button" aria-label="View Profile Picture">
<img src="https://avatars.githubusercontent.com/u/85266757?v=4" alt="Semih Yılmaz Profile Picture"
loading="lazy">
</button>
<h1 class="profile-name">Semih "PSEMO" Yılmaz</h1>
<p class="profile-tagline">Computer Engineer</p>
</header>
<main class="links-container">
<!-- Professional Links Section -->
<section class="link-section professional-section">
<h2><i class="fas fa-briefcase fa-fw"></i> Professional</h2>
<nav aria-labelledby="professional-heading">
<a class="link-item" href="./resume.pdf" target="_blank" rel="noopener noreferrer">
<i class="fas fa-file-alt fa-fw"></i> Game Dev Resume
</a>
<a class="link-item" href="./Resume_.pdf" target="_blank" rel="noopener noreferrer">
<i class="fas fa-file-code fa-fw"></i> Full Stack Resume
</a>
<a class="link-item"
href="https://www.linkedin.com/in/semih-y%C4%B1lmaz-377545201/details/projects/" target="_blank"
rel="noopener noreferrer">
<i class="fab fa-linkedin fa-fw"></i> Organized Projects (LinkedIn)
</a>
<a class="link-item" href="https://www.youtube.com/@semihylmaz3949/playlists" target="_blank"
rel="noopener noreferrer">
<i class="fab fa-youtube fa-fw"></i> Project Videos (YouTube)
</a>
<a class="link-item" href="http://play.google.com/store/apps/developer?id=Semih+Y%C4%B1lmaz"
target="_blank" rel="noopener noreferrer">
<i class="fab fa-google-play fa-fw"></i> Android Apps & Games
</a>
<a class="link-item" href="https://psemo.itch.io/" target="_blank" rel="noopener noreferrer">
<i class="fas fa-gamepad fa-fw"></i> Game Jam Games (itch.io)
</a>
<a class="link-item" href="https://github.com/PSEMO" target="_blank" rel="noopener noreferrer">
<i class="fab fa-github fa-fw"></i> GitHub Profile
</a>
</nav>
</section>
<!-- Personal Links Section -->
<section class="link-section personal-section">
<h2><i class="fas fa-user fa-fw"></i> Personal</h2>
<nav aria-labelledby="personal-heading">
<a class="link-item" href="https://www.linkedin.com/in/semih-y%C4%B1lmaz-377545201/" target="_blank"
rel="noopener noreferrer">
<i class="fab fa-linkedin fa-fw"></i> LinkedIn Profile
</a>
<a class="link-item" href="https://discord.gg/VyhyFkv86N" target="_blank" rel="noopener noreferrer">
<i class="fab fa-discord fa-fw"></i> My Discord Server
</a>
<a class="link-item" href="https://steamcommunity.com/id/PSEMO/" target="_blank"
rel="noopener noreferrer">
<i class="fab fa-steam fa-fw"></i> Steam Profile
</a>
</nav>
</section>
<!-- Other Projects Section -->
<section class="link-section other-projects-section">
<h2><i class="fas fa-terminal fa-fw"></i> Other Projects</h2>
<nav aria-labelledby="other-projects-heading">
<a class="link-item" href="./Other/Grind%20Mindset/index.html" target="_blank"
rel="noopener noreferrer">
<i class="fa fa-code fa-fw"></i> Grind Mindset PreRelease
</a>
<a class="link-item" href="./Other/Hack(2)%3B/index.html" target="_blank" rel="noopener noreferrer">
<i class="fa fa-code fa-fw"></i> Hack(2); Game
</a>
<a class="link-item" href="./Other/sorter.html" target="_blank" rel="noopener noreferrer">
<i class="fa fa-sort-alpha-down fa-fw"></i> Sorter Tool
</a>
</nav>
</section>
</main>
<footer class="page-footer">
<!-- Animated Hashtag -->
<div class="animated-hashtag">#OpenSource</div>
</footer>
</div> <!-- / .container -->
<!-- Image Popup Modal -->
<div id="imagePopup" class="popup-overlay" role="dialog" aria-modal="true" aria-labelledby="popup-heading"
aria-hidden="true">
<div class="popup-content">
<h2 id="popup-heading" class="visually-hidden">Profile Picture Large View</h2>
<button id="closePopup" class="popup-close" aria-label="Close popup">×</button>
<img src="https://avatars.githubusercontent.com/u/85266757?v=4"
alt="Semih Yılmaz Profile Picture - Large View">
</div>
</div>
<!-- Visually Hidden Class (for accessibility) -->
<style>
.visually-hidden {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border: 0;
}
</style>
<!-- JavaScript -->
<script src="script.js"></script>
</body>
</html>