I recently obtained a bootstrap theme from the website wrapbootstrap to use in my Java web application. However, I am unsure of where to begin with it. Despite having already added the bootstrap css to my application, I now wish to remove it and replace it with the new theme.
Upon extracting the downloaded file, I discovered numerous files including jQuery and CSS. The CSS files have extensions like .scss, but there is an html folder containing various bootstrap, CSS, and example html files. These HTML files include all the necessary CSS within them. Should I import them in a similar manner in my JSP files?
Here is an example of the HTML file from the theme:
index.html
<head>
<title>Flatty - Flat Administration Template</title>
<meta content='width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no' name='viewport'>
<meta content='text/html;charset=utf-8' http-equiv='content-type'>
<meta content='Flat administration template for Twitter Bootstrap.' name='description'>
<link href='assets/images/meta_icons/favicon.ico' rel='shortcut icon' type='image/x-icon'>
<link href='assets/images/meta_icons/apple-touch-icon.png' rel='apple-touch-icon-precomposed'>
<link href='assets/images/meta_icons/apple-touch-icon-57x57.png' rel='apple-touch-icon-precomposed' sizes='57x57'>
... (additional code)
</head>
Similarly, each page contains these types of imports. Do I need to replicate this approach in my JSP files as well?