This is a plain HTML/CSS website — no coding tools required to edit it.
index.html— Home pageresearch.html— Research pagepublications.html— Publications / papers listcontact.html— Contact pagestyle.css— Controls colors, fonts, and layout for all pages (you usually don't need to touch this)images/— Folder for your photos. Replace the placeholder files here with your own images, keeping the file names the same, OR use a new file name and update the matchingsrc="..."in the HTML.
- Open any
.htmlfile with a plain text editor (Notepad, TextEdit, or — recommended — the free app VS Code, or even editing directly on GitHub.com in your browser). - Find the text you want to change and type over it. Anything inside
<!-- like this -->is a note for you and won't show up on the site. - Save the file.
- Put your image file inside the
imagesfolder (e.g.my-photo.jpg). - In the HTML file, find the matching
<img src="images/...">tag and change it to<img src="images/my-photo.jpg">.
Open publications.html, copy one whole block that starts with <li class="pub-entry"> and ends with </li>, paste it where you want the new entry, then edit the title/authors/journal/links.
See the step-by-step walkthrough Claude gave you in chat. In short:
- Create a free account at github.com.
- Create a new repository and upload all the files in this folder.
- In the repository's Settings → Pages, set the source to the main branch.
- Your site goes live at
https://your-username.github.io/repository-name/.