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

33 lines
1.1 KiB
Markdown
Raw Normal View History

2018-10-12 19:37:13 +00:00
---
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.
```html
<!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 <a href='https://getuikit.com/docs/introduction' target='_blank' rel='nofollow'>here</a>.
### Learning Resources
* The official documentation for UIKit is available <a href='https://getuikit.com/docs/introduction' target='_blank' rel='nofollow'>here</a>.
* Checkout UIKit's open source GitHub repository <a href='https://github.com/uikit/uikit' target='_blank' rel='nofollow'>here</a>.