JSFiddle - React, Tailwind, and code Playground

HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
        <title>Untitled</title>
    </head>
    
    <body>
        <ul class="linksBar" id="footer">
            <li>
                <a href="#">Terms of Service</a>
            </li><li>|</li><li>
                <a href="#">Privacy Policy</a>
            </li><li>|</li><li>
                <a href="#">About Us</a>
            </li>
        </ul>
    </body>
</html>

CSS

@charset "UTF-8";
/* CSS Document */

* {
    border: 1px solid black;
}
body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0 auto;
    width: 900px;
}
ul#footer {
    margin: 0 auto;
    text-align: center;
}
ul.linksBar {
    display: block;
    width: auto;
}
ul.linksBar {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
ul.linksBar li {
    display: inline-block;
    vertical-align: top;
}