forked from lorepirri/cayman-blog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
119 lines (111 loc) · 4.65 KB
/
Copy pathabout.html
File metadata and controls
119 lines (111 loc) · 4.65 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About — Nitin Mukesh Tiwari</title>
<meta name="description" content="About Nitin Mukesh Tiwari — education, awards, research publications, and teaching experience.">
<link rel="icon" href="favicon.ico">
<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=DM+Sans:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<!-- Navbar -->
<nav class="navbar" role="navigation" aria-label="Main navigation">
<div class="container">
<a href="index.html" class="nav-logo"><span class="brace">{</span>NMT<span class="brace">}</span></a>
<div class="nav-links">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="experience.html">Experience</a>
<a href="resume.html">Resume</a>
<a href="contact.html">Contact</a>
<button class="theme-toggle" aria-label="Toggle theme">
<svg class="icon-sun" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><circle cx="12" cy="12" r="5"/><path d="M12 1v2m0 18v2M4.22 4.22l1.42 1.42m12.72 12.72l1.42 1.42M1 12h2m18 0h2M4.22 19.78l1.42-1.42M18.36 5.64l1.42-1.42"/></svg>
<svg class="icon-moon" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"/></svg>
</button>
</div>
<button class="nav-hamburger" aria-label="Open menu"><span></span><span></span><span></span></button>
</div>
<div class="nav-mobile">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="experience.html">Experience</a>
<a href="resume.html">Resume</a>
<a href="contact.html">Contact</a>
<button class="theme-toggle" aria-label="Toggle theme">
<svg class="icon-sun" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><circle cx="12" cy="12" r="5"/><path d="M12 1v2m0 18v2M4.22 4.22l1.42 1.42m12.72 12.72l1.42 1.42M1 12h2m18 0h2M4.22 19.78l1.42-1.42M18.36 5.64l1.42-1.42"/></svg>
<svg class="icon-moon" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"/></svg>
</button>
</div>
</nav>
<!-- About Hero -->
<section class="section" style="padding-top: 7rem;">
<div class="container">
<div class="about-grid">
<div class="about-photo-wrap reveal">
<img src="" alt="" class="about-photo">
</div>
<div class="about-text reveal" data-delay="100" id="about-text">
<p class="section-label">About Me</p>
<h2 class="about-name"></h2>
<p class="about-para"></p>
<p class="about-para"></p>
<p class="about-para"></p>
<div class="about-terminal" id="about-terminal"></div>
</div>
</div>
</div>
</section>
<!-- Education -->
<section class="section">
<div class="container">
<div class="section-header reveal">
<p class="section-label">Education</p>
<h2>Academic Background</h2>
</div>
<div class="cards-grid" id="education"></div>
</div>
</section>
<!-- Awards -->
<section class="section">
<div class="container">
<div class="section-header reveal">
<p class="section-label">Recognition</p>
<h2>Awards</h2>
</div>
<div class="cards-grid" id="awards"></div>
</div>
</section>
<!-- Research -->
<section class="section">
<div class="container">
<div class="section-header reveal">
<p class="section-label">Publications</p>
<h2>Research</h2>
</div>
<div class="cards-grid" id="research"></div>
</div>
</section>
<!-- Teaching -->
<section class="section">
<div class="container">
<div class="section-header reveal">
<p class="section-label">Academia</p>
<h2>Teaching</h2>
</div>
<div class="cards-grid" id="teaching"></div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<p>© 2026 Nitin Mukesh Tiwari. All rights reserved.</p>
</div>
</footer>
<script src="data/profile.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>