freeCodeCamp/guide/english/css/css-frameworks/css-frameworks-uikit/index.md

1.1 KiB

title
CSS Framework UIKit

CSS Framework UIKit

UIKit is A lightweight and modular front-end framework for developing fast and powerful web interfaces.

Getting Started

Here is a simple HTML template which includes the latest compiled and minified CSS for the UIKit library.

<!DOCTYPE html>
<html>
    <head>
        <title></title>
        <link rel="stylesheet" href="css/uikit.min.css" />
        <script src="js/jquery.js"></script>
        <script src="js/uikit.min.js"></script>
        <script src="js/uikit-icons.min.js"></script>
    </head>
    <body>
    </body>
</html>

We have used a CDN in this example, but you can checkout other ways of installing UIKit here.

Learning Resources

  • The official documentation for UIKit is available here.
  • Checkout UIKit's open source GitHub repository here.