Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<pre><code>&lt;!DOCTYPE html&gt; &lt;html&gt; &lt;head&gt;&lt;title&gt;Test&lt;/title&gt; &lt;style type="text/css"&gt; .flow ul { float: left; } .flow li { list-style: none; } &lt;/style&gt; &lt;/head&gt; &lt;body&gt; &lt;div class="flow"&gt; &lt;ul&gt; &lt;li&gt;Albany, 1324&lt;/li&gt; &lt;li&gt;Albuquerque, 3456&lt;/li&gt; &lt;li&gt;Baton Rouge, 4566&lt;/li&gt; &lt;li&gt;Bellvue, 9856&lt;/li&gt; &lt;li&gt;Catameran, 75696&lt;/li&gt; &lt;/ul&gt; &lt;ul&gt; &lt;li&gt;D SiteName, 1324&lt;/li&gt; &lt;li&gt;E SiteName, 3456&lt;/li&gt; &lt;li&gt;F SiteName, 4566&lt;/li&gt; &lt;li&gt;SiteName, 9856&lt;/li&gt; &lt;li&gt;SiteName, 75696&lt;/li&gt; &lt;/ul&gt; &lt;ul&gt; &lt;li&gt;SiteName, 1324&lt;/li&gt; &lt;li&gt;SiteName, 3456&lt;/li&gt; &lt;li&gt;SiteName, 4566&lt;/li&gt; &lt;li&gt;SiteName, 9856&lt;/li&gt; &lt;li&gt;SiteName, 75696&lt;/li&gt; &lt;/ul&gt; &lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>Or if you mean something without CSS when you say, "plain old HTML", you might want something like this but this is perhaps not something you want because it doesn't use the <code>&lt;div&gt;</code> element.</p> <pre><code>&lt;!DOCTYPE html&gt; &lt;html&gt; &lt;head&gt;&lt;title&gt;Test&lt;/title&gt; &lt;body&gt; &lt;table&gt; &lt;tr&gt; &lt;td&gt; &lt;ul&gt; &lt;li&gt;Albany, 1324&lt;/li&gt; &lt;li&gt;Albuquerque, 3456&lt;/li&gt; &lt;li&gt;Baton Rouge, 4566&lt;/li&gt; &lt;li&gt;Bellvue, 9856&lt;/li&gt; &lt;li&gt;Catameran, 75696&lt;/li&gt; &lt;/ul&gt; &lt;/td&gt; &lt;td&gt; &lt;ul&gt; &lt;li&gt;D SiteName, 1324&lt;/li&gt; &lt;li&gt;E SiteName, 3456&lt;/li&gt; &lt;li&gt;F SiteName, 4566&lt;/li&gt; &lt;li&gt;SiteName, 9856&lt;/li&gt; &lt;li&gt;SiteName, 75696&lt;/li&gt; &lt;/ul&gt; &lt;/td&gt; &lt;td&gt; &lt;ul&gt; &lt;li&gt;SiteName, 1324&lt;/li&gt; &lt;li&gt;SiteName, 3456&lt;/li&gt; &lt;li&gt;SiteName, 4566&lt;/li&gt; &lt;li&gt;SiteName, 9856&lt;/li&gt; &lt;li&gt;SiteName, 75696&lt;/li&gt; &lt;/ul&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>You might also want to use lines terminated with <code>&lt;br&gt;</code> elements intead of <code>&lt;ul&gt;</code> and <code>&lt;li&gt;</code> elements depending on what you need.</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload