Documentation

Getting started


Finalcss is a powerful and simple frontend toolkit. Build anythingβ€”from prototype to productionβ€”in minutes.

  • Carefully curated UI design - colors and typogrpahy
  • Light / Dark mode, without writing extra code
  • Tailwind like utility classes, Bootstrap like components
  • You're NOT locked into framework
  • No JS, No complex setup
  • Extend by adding your utility classes and components

Using via CDN
https://cdn.jsdelivr.net/gh/getfinalui/finalcss@main/css/final.min.css

Create a new index.html file in your project root. To include final.css place the tag in the for our CSS

<!doctype html>
<html lang="en">
	<head>
		<meta charset="utf-8">
		<meta name="viewport" content="width=device-width, initial-scale=1">
		<title>Final CSS demo</title>
		<link href="https://cdn.jsdelivr.net/gh/getfinalui/finalcss@main/css/final.min.css" rel="stylesheet" async='true' crossorigin='anonymous'>
	</head>
	<body>
		<h1>Hello, world!</h1>
		<p>This is my project content</p>	
	</body>
</html>

Download locally

You can Download from Github or click "Download" button at the top-right of this page. If you have downloaded finalcss, then here is overview. We also included many example html templates built with Finalcss library.


	πŸ“‚ your-project
	β”‚
	β”œβ”€β”€ πŸ“‚ scss/
	β”‚   β”‚
	β”‚   β”œβ”€β”€ πŸ“‚ components/ 
	β”‚   β”œβ”€β”€ πŸ“‚ utilities/ 
	β”‚   β”œβ”€β”€ πŸ“‚ layout/ 
	β”‚   β”‚
	β”‚   β”œβ”€β”€ πŸ“„ _base-settings.scss 
	β”‚   β”œβ”€β”€ πŸ“„ _reset.scss  
	β”‚   β”œβ”€β”€ πŸ“„ _grid-system.scss  
	β”‚   β”œβ”€β”€ πŸ“„ _theme.scss 
	β”‚   β”œβ”€β”€ πŸ“„ _variables-root.scss 
	β”‚   β”‚
	β”‚   └── πŸ“„ final.scss 
	β”‚   
	β”œβ”€β”€ πŸ“‚ css/
	β”‚   └── final.css
	β””
	πŸ“„  starter-admin.html
	πŸ“„  starter-blog.html
	πŸ“„  starter-table.html
	πŸ“„  starter-landing.html
	πŸ“„  starter-login.html