maribel-arac / mywebsite

my first website
0 stars 2 forks source link

Code review #4

Open aldompe95 opened 7 years ago

aldompe95 commented 7 years ago

I think there is no need to use the moveTo

<a href="#aboutMe" onclick="moveTo('myself')">Myself</a>
<a href="#MyHobbies" onclick="moveTo('hobbies')">Hobbies</a>
<a href="#travel" onclick="moveTo ('travel')">Travelling</a>

since your not using effects like smooth scroll, the "a" tag can move you to the section you want if you specific the correct id, like this:

<a href="#myself">Myself</a>
<a href="#hobbies">Hobbies</a>
<a href="#travel">Travelling</a>