-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (62 loc) · 2.86 KB
/
index.html
File metadata and controls
75 lines (62 loc) · 2.86 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<!-- ===== TITTLE ===== -->
<title>Radostin Stoychev | Portfolio</title>
<!-- ===== META ===== -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Radostin Stoychev Software Developer Portfolio."/>
<!-- ===== OG ===== -->
<meta property="og:title" content="Radostin Stoychev | Portfolio" />
<meta property="og:description" content="Radostin Stoychev Software Developer Portfolio." />
<meta property="og:url" content="https://radrex.github.io/">
<meta property="og:image" content="https://raw.githubusercontent.com/radrex/radrex.github.io/main/static/icons/favicon.ico" />
<!-- ===== TWITTER ===== -->
<meta name="twitter:title" content="Radostin Stoychev | Portfolio" />
<meta name="twitter:description" content="Radostin Stoychev Software Developer Portfolio." />
<meta name="twitter:image" content="https://raw.githubusercontent.com/radrex/radrex.github.io/main/static/icons/favicon.ico" />
<!-- ===== FAVICON ===== -->
<link href="./static/icons/favicon.ico" rel="icon" type="image/x-icon" />
<!-- ===== CSS ===== -->
<link rel="stylesheet" href="./static/css/styles.css">
<!-- ===== JS ===== -->
<script type="module" src="./static/js/index.js"></script>
</head>
<body>
<header>
<nav>
<div class="ribbon-top"></div>
<input type="checkbox" id="menu-toggler" />
<label for="menu-toggler" class="hamburger-btn">
<span class="hamburger-slice"></span>
</label>
<ul class="menu" id="menu">
<li><a href="/" class="active" data-link>About</a></li>
<li><a href="/work" data-link>Work</a></li>
<li><a href="/experience" data-link>Experience</a></li>
<li><a href="/contact" data-link>Contact</a></li>
</ul>
</nav>
</header>
<main id="app">
</main>
<footer class="footer">
<h3>Let's Work Together</h3>
<p>Have a project you'd like to discuss?</p>
<section class="footer-contacts">
<a class="btn btn-small" href="/contact" data-link>Get in Touch</a>
</section>
<section class="footer-social">
<a target="_blank" rel="noopener noreferrer" href="https://github.com/radrex"><i class="fab fa-github"></i></a>
<a target="_blank" rel="noopener noreferrer" href="https://stackoverflow.com/users/8540759/radrex?tab=profile"><i class="fab fa-stack-overflow"></i></a>
<a target="_blank" rel="noopener noreferrer" href="https://codepen.io/radrex"><i class="fab fa-codepen"></i></a>
<a target="_blank" rel="noopener noreferrer" href="https://www.linkedin.com/in/radostin-stoychev-53197014a/"><i class="fab fa-linkedin-in"></i></a>
</section>
<section class="footer-rights">
<p>© 2025 Radostin Stoychev. All rights reserved.</p>
</section>
<div class="ribbon-bot"></div>
</footer>
</body>
</html>