# STEP 01
```
$ bower install
```
`test/bower_components` folder is created, plug-ins required will be downloaded.

# STEP 02
It'll add the plugin resources to html> head.
```html
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <link rel="stylesheet" type="text/css" href="bower_components/bootstrap/dist/css/bootstrap.min.css"/>
    
    <script src="bower_components/jquery/dist/jquery.min.js"></script>
    <script src="bower_components/ax5core/ax5core.js"></script>
</head>
<body>

</body>
</html>
```

