<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
<style>
ul {
columns: 2;
-webkit-columns: 2;
-moz-columns: 2;
}
</style>
</head>
<body>
<ul>
<li>Some text</li>
<li>Some text</li>
<li>Some text</li>
<li>Some text</li>
<li>Some text</li>
<li>Some text</li>
</ul>
</body>
</html>