Where to store twitter bootstrap when developing in eclipse

I am using Twitter upload to develop web pages. Now I want to integrate this HTML with jsp in eclipse. I was tested this way by setting the bootstrap folder to web-inf, but it shows errors in the bootstrap folder. So my problem is where I store twitter bootstrap folder, so it can be used in eclipse project. T Thank you in advance. Sorry for the English.

+4
source share
2 answers

Assuming that you created the Dynamic Web Project boot file, it is located in the WebContent folder.

  • Webcontent
    • self-loading
      • CSS
      • img
      • Js
    • META-INF
    • WEB-INF
+11
source

I found this to be a lot easier. You simply put the bootstrap folder in the project directory, and then specify the path inside the HTML file. Like this: link href = "bootstrap / css / bootstrap-combination.min.css" rel = "stylesheet"

0
source

Source: https://habr.com/ru/post/1432858/


All Articles