-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (62 loc) · 2.21 KB
/
Copy pathindex.html
File metadata and controls
69 lines (62 loc) · 2.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>SPECTRAL LABS</title>
<style>
body { font-family: Garamond, sans-serif; margin:0; padding:0; line-height:1.6; }
header, footer { background:#135174; color:#fff; padding:1em; text-align:center; }
nav a { margin:0 10px; color:#fff; text-decoration:none; }
.container { max-width:1000px; margin:1em auto; padding:0 1em; }
section { margin-bottom:2em; }
h2 { color:#004080; border-bottom:2px solid #004080; padding-bottom:0.3em; }
.publication { margin-bottom:0.5em; }
@media (max-width:600px) {
nav a { display:block; margin:5px 0; }
}
</style>
</head>
<body>
<header>
<h1>SPECTRAL-HIMANSHU</h1>
<nav>
<a href="#about">About</a>
<a href="#publications">Publications</a>
<a href="#projects">Projects</a>
<a href="https://www.youtube.com/@eig_himanshu">Videos</a></a>
<a href="#contact">Contact</a>
</nav>
</header>
<main class="container">
<section id="about">
<h2>About Me</h2>
<p>I am a Research Scholar in Climate Science at IIT Bombay. My research focuses on Turbulence Modelling, Large Eddy Simulations, Scientific Computing, Computational Fluid Dynamics, Planetary Convection, Planetary Boundary Layer, and Data Driven Engineering and Science.</p>
</section>
<section id="publications">
<h2>Selected Publications</h2>
<div class="publication">
<strong>Doe, J.</strong> “Title of Paper One.” <em>Journal Name</em>, 2024.
</div>
<div class="publication">
<strong>Doe, J.</strong> “Title of Paper Two.” <em>Conference Name</em>, 2023.
</div>
</section>
<section id="projects">
<h2>Research Projects</h2>
<ul>
<li><strong>Project Alpha:</strong> Developing ML models for early cancer detection.</li>
<li><strong>Project Beta:</strong> High-throughput genomic data analysis pipelines.</li>
</ul>
</section>
<section id="contact">
<h2>Contact</h2>
<p>Email: <a href="mailto:hraj.g63@gmail.com">hraj.g63@gmail.com</a></p>
<p>Ping: +91 7061231021.</p>
</section>
</main>
<footer>
<p>© 2025 Himanshu Raj</p>
</footer>
</body>
</html>