| 1 |
000003 |
Bootstrap CDN Link |
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-sRIl4kxILFvY47J16cr9ZwB07vP4J8+LH7qKQnuqkuIAvNWLzeN8tE5YBujZqJLB" crossorigin="anonymous"> |
bootstrap |
This CDN link loads the Bootstrap 5.3.8 CSS framework from jsDelivr. It provides pre-designed styles for building responsive and modern web pages, including layouts, buttons, forms, grids, and UI components. The integrity and crossorigin attributes help ensure security and safe loading of the file from the CDN. |
| 2 |
000006 |
JQuery CDN Link |
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script> |
jquery |
This CDN link loads the jQuery 3.7.1 library from a fast content delivery network (code.jquery.com). It allows developers to use jQuery functions in their web pages for easier DOM manipulation, event handling, animations, and AJAX operations without downloading the library locally. |
| 3 |
000007 |
React Core CDN Link |
<script src="https://unpkg.com/react@18/umd/react.development.js" crossorigin></script> |
react |
This CDN link loads the React 18 development version from a public CDN (unpkg). It provides the React JavaScript library in the browser so you can build and run user interfaces (UI) without installing React locally. The “development†build includes extra warnings and debugging features, which help developers during coding. |
| 4 |
000004 |
Tailwind CSS CDN Link |
<script src="https://cdn.tailwindcss.com"></script> |
tailwind |
This CDN link loads Tailwind CSS, a popular utility-first CSS framework, directly into a web page. It allows developers to style HTML elements quickly using pre-built utility classes without installing Tailwind locally. |
| 5 |
000005 |
VueJS CDN Link |
<script src="https://unpkg.com/vue@3/dist/vue.global.js"></script> |
vue |
This CDN link loads Vue.js version 3 (global build) from the unpkg CDN. It allows you to use Vue 3, a popular JavaScript framework, directly in your HTML file without installing anything locally. With this script, you can create interactive web interfaces using Vue’s features like components, reactivity, and data binding. |