Skip to content

Latest commit

 

History

History
25 lines (23 loc) · 624 Bytes

README.md

File metadata and controls

25 lines (23 loc) · 624 Bytes

HTML + CSS

Component built to demonstrate how unnecessary complex HTML structures are to create a simple chat. Chat with purely semantic and objectless HTML to meet aesthetic needs.

<div class="Chat">
    <ul>
        <li>
            <u>
                <b>Elon Musk</b>
                <span>¿Cómo estas Salbatore?</span>
                <em>11:37</em>
            </u>
        </li>
        <li>
            <p>
                <b>Salbatore Munuera</b>
                <span>Estoy estresado</span>
                <em>16:23</em>
            </p>
        </li>
    </ul>
</div>