Is there a problem with adding a bit of bootstrap on the page that is not?

3

Hello, I'm creating a web system and so far I've only created the header and a sidebar with the options. So far I was creating everything without bootstrap, but I want to put bootstrap elements like section and tables, since the creation of the header and sidebar gave me a lot of work due to little knowledge in web languages. I would like to know if there is any problem in continuing to create the other elements using the bootstrap so that I do not have to recreate the header and sidebar?

    
asked by anonymous 23.04.2017 / 19:23

1 answer

5

No problem, this is quite common.

What you should consider is:

  • pages without scripts is always preferable in the perspective of the speed and weight of the page to load
  • Scripted pages are often more useful because you can interact and change the page depending on what the user needs
  • Always use the same scripts, wherever possible, so the browser loads the script once and does not need to fetch the next
  • uses mined versions in production to keep file sizes as small as possible
  • When possible, it loads the async scripts, this tells the browser that the script is not required to load the page so the page is displayed before this script loads (never use this in CSS or scripts that have to run right on the page top of page load)
23.04.2017 / 19:26