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

34 lines
1.0 KiB
Markdown
Raw Normal View History

2018-10-12 19:37:13 +00:00
---
title: CSS Framework UIKit
localeTitle: CSS Framework UIKit
---
## CSS Framework UIKit
UIKit es un framework de front-end ligero y modular para desarrollar interfaces web rápidas y potentes.
### Empezando
Aquí hay una plantilla HTML simple que incluye el último CSS compilado y minificado para la biblioteca UIKit.
```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>
```
Hemos utilizado un CDN en este ejemplo, pero puede consultar otras formas de instalar UIKit [aquí](https://getuikit.com/docs/introduction) .
### Recursos de aprendizaje
* La documentación oficial de UIKit está disponible [aquí](https://getuikit.com/docs/introduction) .
* Verifique el repositorio de GitHub de código abierto de UIKit [aquí](https://github.com/uikit/uikit) .