This is a simple HTML + CSS website hosted on GitHub Pages.
my-website/
│
├── index.html # Landing page
├── professional.html # Professional accomplishments page
├── personal.html # Personal interests page
├── style.css # Styling for the site
├── navbar.js # Shared navigation bar
├── images/ # Folder for images
└── README.md # This file
- Create a new HTML file in the root folder, e.g.,
newpage.html. - Add this at the top inside
<head>:<link rel="stylesheet" href="style.css"> <script src="navbar.js" defer></script>
- Add your content inside
<body>in a container:<div class="container"> <h1>My New Page</h1> <p>Page content here...</p> </div>
- Open
navbar.jsand add your new page to the list:<li><a href="newpage.html">New Page</a></li>
- Save, commit, and push to GitHub. The new page will appear in the navigation bar automatically.