<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
<style>
h2 {
text-align: center;
}
li {
margin: 5px 5px 15px;
}
li:hover {
cursor: grab;
}
</style>
</head>
<body>
<h2>W3docs</h2>
<div>
A web developer information website providing tutorials and references related to web development.
</div>
<ul>
<li>Books</li>
<li>Quizzes</li>
<li>Snippets</li>
<li>Tools</li>
<li>String Functions</li>
</ul>
</body>
</html>