Skip to content

TaniCSS/Tani

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TaniCSS

Tani is a modern CSS framework that provides a comprehensive set of utility classes and components to build responsive, beautiful web interfaces quickly and efficiently.

Installation

Download the CSS file and include it in your project:

<link rel="stylesheet" href="./dist/css/tani.css">

Usage

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Tani CSS</title>
    <link rel="stylesheet" href="./dist/css/tani.css">
</head>
<body>
    <div class="container">
        <h1 class="text-center">Hello, Tani!</h1>
        <button class="btn btn-primary">Click Me</button>
    </div>
</body>
</html>