I was wondering how to fade in every 'a' element after the other has faded in. For example: 'Profile' will fade in, and then 1 second later 'Experiences' and so on. Does this require creating a list? So far I have gotten the elements to fade it all together. The code is below.
.menuitems{
font-family: pal1;
font-size: 1rem;
opacity: 0;
transition: opacity 1s 999999s;
transition-timing-function: ease-out;
position: absolute;
right: 3%;
top: 4.4%;
text-align: right;
}
.menu_Title:hover + .menuitems{
transition-delay: 0.1s;
opacity: 1;
}
<p class="menu_Title"> //menu </p>
<div class = "menuitems">
<a href="#">Profile</a><br>
<a href="#">Experiences</a><br>
<a href="#">Skills</a><br>
<a href="#">Contact</a><br>
</div>