I've tried to search for a solution to this but wasn't quite sure how to phrase my problem in google in a concise way to obtain a solution.
I'm rather new to Html and git hub and recently I made my own Github page with my own html code.
In short, I have an file: index.html in github which is the main page. I would like it so that when I press the "About Me" button, it will open aboutme.html as a page(also in the same github repository).
My attempt at this problem is by using onclick followed by the html file name like so:
<div class="box2" onclick="aboutme.html'"> About Me</div>
(box2 is the button class I use)
which normally works for regular links. however clicking on the button when the html file in put in instead doesn't do anything.
Thank you so much for any input regarding the matter!
If needed here is the site I've been working on: http://stevezease.github.io/I'm always open to constructive criticism and suggestions!