hover over something to make html visible

HTML
div {
    display: none;
}
    
a:hover + div {
    display: block;
}
Source

Also in HTML: