<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
<style>
h2 {
color: #4287f5;
}
div {
display: none;
border: 5px double #b4b8bf;
}
a {
cursor: pointer;
}
a:hover + div {
display: block;
color: #4287f5;
font-size: 20px;
}
</style>
</head>
<body>
<center>
<h2>W3docs</h2>
<b>
Hover the element displayed below to see the div element.
</b>
<br>
<br>
<a href="https://www.w3docs.com/">W3docs</a>
<div>
Lorem Ipsum is simply dummy text of the printing and typesetting industry.
</div>
</center>
</body>