Skip to content

Commit

Permalink
added image
Browse files Browse the repository at this point in the history
  • Loading branch information
vnagpal25 committed Oct 20, 2023
1 parent 6f61629 commit 43219b1
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 10 deletions.
Binary file added images/nagpal_headshot.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
57 changes: 47 additions & 10 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,19 +1,56 @@
<!DOCTYPE html>
<html>
<head>
<title>My Website</title>
<meta charset="UTF-8">
<title>Vansh Nagpal</title>
<!-- Add your CSS stylesheet link here -->
</head>
<body>
<!-- Header Section -->
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="190_proj.html">Projects</a></li>
</ul>
</nav>
<!-- Photo -->
<img src="nagpal_headshot.JPG" alt="Vansh Nagpal">
</header>
<main>
<!-- Your homepage content goes here -->
</main>

<!-- Navigation Menu -->
<nav>
<ul>
<li><a href="#about-me">About Me</a></li>
<li><a href="#honors-awards">Honors & Awards</a></li>
<li><a href="#publications">Publications</a></li>
<li><a href="190_proj.html">Projects</a></li> <!-- Link to your Projects page -->
</ul>
</nav>

<!-- About Me Section -->
<section id="about-me">
<h1>About Me</h1>
<p>Your introduction goes here. Tell visitors about your background, interests, and goals.</p>
</section>

<!-- Honors/Awards Section -->
<section id="honors-awards">
<h1>Honors & Awards</h1>
<ul>
<li>Year: Award or Honor Name</li>
<li>Year: Award or Honor Name</li>
<!-- Add more items as needed -->
</ul>
</section>

<!-- Publications Section -->
<section id="publications">
<h1>Publications</h1>
<ul>
<li><a href="publication1.pdf" target="_blank">Publication Title 1</a></li>
<li><a href="publication2.pdf" target="_blank">Publication Title 2</a></li>
<!-- Add more items as needed -->
</ul>
</section>

<!-- Footer Section -->
<footer>
<p>&copy; 2023 Your Name</p>
</footer>
</body>
</html>

0 comments on commit 43219b1

Please sign in to comment.