-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.html
More file actions
100 lines (96 loc) · 3.43 KB
/
Copy pathabout.html
File metadata and controls
100 lines (96 loc) · 3.43 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>About - Nishikanta Ray</title>
<meta
name="description"
content="About me - Developer, Designer, Creator" />
<!-- Fonts -->
<link rel="stylesheet" href="https://rsms.me/inter/inter.css" />
<link rel="stylesheet" href="./css/about.css" />
<!-- Markdown parser -->
<script src="https://cdn.jsdelivr.net/npm/marked@9.1.2/marked.min.js"></script>
</head>
<body>
<!-- Navigation -->
<nav class="nav">
<div class="nav-container">
<div class="nav-mobile-spacer"></div>
<ul class="nav-links">
<li><a href="index.html" class="nav-link">Home</a></li>
<li><a href="about.html" class="nav-link active">About</a></li>
<li><a href="projects.html" class="nav-link">Projects</a></li>
<li><a href="blog.html" class="nav-link">Blog</a></li>
<li><a href="contact.html" class="nav-link">Contact</a></li>
</ul>
<div class="nav-controls">
<button
class="mobile-menu-toggle"
id="mobile-menu-toggle"
aria-label="Toggle mobile menu">
<svg
width="20"
height="20"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2">
<line x1="3" y1="6" x2="21" y2="6"></line>
<line x1="3" y1="12" x2="21" y2="12"></line>
<line x1="3" y1="18" x2="21" y2="18"></line>
</svg>
</button>
<button
class="theme-toggle"
id="theme-toggle"
aria-label="Toggle theme">
<svg
width="16"
height="16"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2">
<circle cx="12" cy="12" r="5"></circle>
<line x1="12" y1="1" x2="12" y2="3"></line>
<line x1="12" y1="21" x2="12" y2="23"></line>
<line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line>
<line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line>
<line x1="1" y1="12" x2="3" y2="12"></line>
<line x1="21" y1="12" x2="23" y2="12"></line>
<line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line>
<line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line>
</svg>
</button>
</div>
</div>
</nav>
<!-- Main Content -->
<main class="main">
<header class="page-header">
<h1 class="page-title">About</h1>
<p class="page-subtitle">
Discover my journey, passion for technology, and the creative process behind building exceptional digital experiences.
</p>
</header>
<div id="content" class="content">
<div class="loading">Loading...</div>
</div>
</main>
<!-- Footer -->
<footer class="footer">
<p>
© <span id="footer-year"></span> Your Name. Built with
<a href="https://renderer.nishikanta.in/" target="_blank" rel="noopener noreferrer"
>Renderer</a
> ❤️
</p>
</footer>
<script>
document.getElementById('footer-year').textContent = new Date().getFullYear();
</script>
<script src="./js/about.js"></script>
</body>
</html>