Если вы хотите использовать его из cdn, то надо только поставить линк на странице на его css файл:solution wrote: ↑12 Oct 2020 17:05 Инструкция внизу.
Я так понимаю что если я хочу использовать CDN Bootstrap то я не должна ничего Download а взять только строчки кода и воткнуть в страницу с кодом.
Правильно мыслю?
//Инструкция
• Download Bootstrap from the main site of Bootstrap - https://getbootstrap.com/ – _if you prefer this option, you can also follow the instructions from the Bootstrap website on where to store the Bootstrap files in your web server
• • _Include Bootstrap from a CDN (Content Delivery Network). You can find the URL of the CDNs at the Download page of https://getbootstrap.com/docs/4.3/getti ... /download/ (do not worry about that 4.3 – _this was the version when this lecture was written – _you just need to find the button o_r_ _t_h_e_ _l_i_n_k_ _t_o_ _D_o_w_n_l_o_a_d_ _i_n_ _t_h_e_ _m_a_i_n_ _p_a_g_e_)_.
_ _T_h_e_ _C_D_N_’s_ _c_a_n_ _b_e_ _f_o_u_n_d_ _i_f_ _y_o_u_ _s_c_r_o_l_l_ _d_o_w_n_ _t_h_e_ _D_o_w_n_l_o_a_d_ _page – _here below is the image showing the part related to the Bootstrap CDN – _note that you can use the Copy (shown in a red circle in the image here) to copy those lines and then paste in your HTML document .
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/boot ... ap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
Если собираетесь пользоваться его javascript контролями, то нужно ещё 3 линка (jquery.js, popper.js и bootstrap.min.js):
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@ ... per.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/boot ... rap.min.js" integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV" crossorigin="anonymous"></script>