Fire UI Getting Started
Introduction Download Customize
Layout
Container Grid
Components
Accordion Box Buttons Code Color and theme Form Modal Navigation bar Slideshow Spacing Table Tabs Tooltip

Introduction

Get started with Fire UI, an open-source framework to help you build website easier.

Quick start

CSS

Copy and paste the stylesheet link into your head element to load Fire UI CSS.

<link rel="stylesheet" type="text/css" href="https://unpkg.com/@fire-ui/fire-ui@0.1.1/FireUI.css">

Javascript

Some of our components require Javascript to work well, such as Code and Navbar feature. To do so: Place the following script tags inside your HTML file

<script src="https://unpkg.com/@fire-ui/fire-ui@0.1.1/FireUI.js"></script>

Important tags

Responsive meta tag

To ensure proper rendering and touch zooming for all devices, add the responsive viewport meta tag to your head element

<meta name="viewport" content="width=device-width, initial-scale=1">

Starter template

Start building your web page by using HTML5 and Fire UI.

<!DOCTYPE html>
<html lang="en">
<head>
    <!-- Required meta tags -->
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <!-- Fire UI CSS -->
    <link rel="stylesheet" type="text/css" href="https://unpkg.com/@fire-ui/fire-ui@0.1.1/FireUI.css">
    <!-- Fire UI Javascript -->
    <script src="https://unpkg.com/@fire-ui/fire-ui@0.1.1/FireUI.js"></script>
    <title>Hello, world!</title>
</head>
<body>
    <h1>Hello, world!</h1>
</body>
</html>