Introduction

Get familiar with the basic setup and overview of UIkit.

First of all you need to download UIkit. For other packages and links to a CDN, head to the installation guide to learn more.


HTML markup

Add the compiled and minified CSS and JavaScript to the <head> element of your HTML5 document. Also include the UIkit icon library. For your basic setup, that's it.


  This text has
been formatted using
   the HTML pre tag. The brower should
      display all white space
as it was entered.
  <div>sdfkhjkjsdflksdf</div>
    <div>Hifzur</div>


<!DOCTYPE html>
<html>
	   <head></head>
	         <title>Title</title>
	         <meta charset="utf-8">
	         <meta name="viewport" content="width=device-width, initial-scale=1">
	         <link rel="stylesheet" href="css/uikit.min.css" />
             <script src="js/uikit.min.js"></script>
	         <script src="js/uikit-icons.min.js"></script>
	    </head>
	    <body>
        ...
	    </body>
</html>