Lily's - Kit

Enhanced human interfaces
& user experiences

Powered by dead simple CSS props and a mix of common convention rules.

anchor article button details flex grid input label list slider table textarea

Article native

<article/> element in web development represents a self-contained composition that can be independently distributable or reusable. It is typically used for content that makes sense on its own, such as news articles, blog posts, forum posts, or any content that can stand alone.

<article>
  <header>
    <h1>Artitle Heading</h1>
    <time>Published on January 1, 2024 by Lily</time>
  </header>
  <p>Content of the article goes here...</p>
  <footer>
    <p>Tags: <a href="#">tag1</a>, <a href="#">tag2</a>, <a href="#">tag3</a></p>
  </footer>
</article>

Artitle Heading

Content of the article goes hereā€¦