Skip to content

Commit dc6ddb9

Browse files
authored
Create index.html
1 parent fe192c7 commit dc6ddb9

File tree

1 file changed

+46
-0
lines changed

1 file changed

+46
-0
lines changed

index.html

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<title>Dr. Your Name – Academic CV</title>
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<link rel="stylesheet" href="style.css" />
8+
</head>
9+
<body>
10+
<nav>
11+
<ul>
12+
<li><a href="index.html">Home</a></li>
13+
<li><a href="experience.html">Experience</a></li>
14+
<li><a href="publications.html">Publications</a></li>
15+
<li><a href="skills.html">Skills</a></li>
16+
<li><a href="contact.html">Contact</a></li>
17+
</ul>
18+
</nav>
19+
20+
<header>
21+
<img src="profile.jpg" alt="Profile Photo" class="profile-pic" />
22+
<h1>Dr. Your Name</h1>
23+
<p class="title">Assistant Professor | AI & NLP Researcher</p>
24+
</header>
25+
26+
<main>
27+
<section>
28+
<h2>Biography</h2>
29+
<p>I am an academic researcher focused on developing scalable AI solutions for low-resource languages. My work integrates machine learning, linguistics, and social impact to build inclusive technologies.</p>
30+
</section>
31+
32+
<section>
33+
<h2>Research Interests</h2>
34+
<ul>
35+
<li>Low-Resource NLP</li>
36+
<li>Language Modeling & Morphology</li>
37+
<li>Machine Learning for Linguistic Diversity</li>
38+
</ul>
39+
</section>
40+
</main>
41+
42+
<footer>
43+
<p>&copy; 2025 Your Name | Built with ❤️ using GitHub Pages</p>
44+
</footer>
45+
</body>
46+
</html>

0 commit comments

Comments
 (0)