Content Delivery Network (CDN)

Patient Tools

Read, save, and share this guide

Use these quick tools to make this medical article easier to read, print, save, or share with a family member.

Article Summary

To connect a CDN (Content Delivery Network) file to your website, follow these steps: Choose a CDN Provider: Select a CDN that suits your needs. Popular options include Cloudflare, Amazon CloudFront, and jsDelivr. Get the CDN URL: Once you've selected a CDN provider, obtain the CDN URL for the specific file (like a CSS or JavaScript file) you want to use. For example, if you're...

Educational health guideWritten for patient understanding and clinical awareness.
Reviewed content workflowUse writer and reviewer profiles for stronger trust.
Emergency safety firstUrgent warning signs are highlighted below.

Seek urgent medical care if you notice

These warning signs are general safety guidance. Local emergency numbers and clinical judgment should always come first.

  • Severe symptoms, breathing difficulty, fainting, confusion, or rapidly worsening illness.
  • New weakness, severe pain, high fever, or symptoms after a serious injury.
  • Any symptom that feels urgent, unusual, or unsafe for the patient.
1

Emergency now

Use emergency care for severe, sudden, rapidly worsening, or life-threatening symptoms.

2

See a doctor

Book a professional medical evaluation if symptoms persist, worsen, recur often, affect daily activities, or occur in a high-risk patient.

3

Learn safely

Use this article to understand possible causes, tests, treatment options, prevention, and questions to ask your clinician.

To connect a CDN (Content Delivery Network) file to your website, follow these steps:

  1. Choose a CDN Provider: Select a CDN that suits your needs. Popular options include Cloudflare, Amazon CloudFront, and jsDelivr.
  2. Get the CDN URL: Once you’ve selected a CDN provider, obtain the CDN URL for the specific file (like a CSS or JavaScript file) you want to use. For example, if you’re using Bootstrap from a CDN, the URL might look like:
    html
    <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
  3. Add the CDN Link to Your HTML:
    • For CSS files, place the <link> tag in the <head> section of your HTML.
    • For JavaScript files, place the <script> tag either in the <head> section or just before the closing </body> tag, depending on when you want the script to load.

    Here’s an example of both:

    html
    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
    <title>Your Website Title</title>
    </head>
    <body>
    <h1>Hello, world!</h1>

    <script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
    <script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.2/dist/js/bootstrap.bundle.min.js"></script>
    </body>
    </html>

  4. Test Your Website: After adding the CDN links, check your website in a browser to ensure everything loads correctly. Use the developer console (F12) to check for any errors.
  5. Optimize Loading: If you want to improve loading speed, you can consider using asynchronous loading for JavaScript by adding the async or defer attributes to the <script> tag. For example:
    html
    <script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" async></script>

And that’s it! Your website should now be connected to the CDN for the specified files.

 

A Content Delivery Network (CDN) can be used to serve a variety of static files for your website, improving load time and performance. Below is a list of important types of files that are commonly served via CDN for websites:

1. CSS Files

  • Bootstrap CSS: To include responsive design frameworks. Example: https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css
  • Font Awesome CSS: For scalable vector icons. Example: https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css

2. JavaScript Libraries

  • jQuery: A fast, small, and feature-rich JavaScript library. Example: https://code.jquery.com/jquery-3.5.1.min.js
  • Bootstrap JS: Provides responsive, mobile-first frontend components. Example: https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js
  • Vue.js/React.js/Angular: For building single-page applications. Example (Vue.js): https://cdn.jsdelivr.net/npm/vue@2.6.12/dist/vue.min.js

3. JavaScript Plugins

  • Popper.js: A library used for tooltips and popovers. Example: https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js
  • Moment.js: For parsing, validating, and formatting dates. Example: https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.29.1/moment.min.js

4. Fonts

  • Google Fonts: Popular fonts to improve typography. Example: https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap

5. Image/Icons

  • SVG Icons: Vector images for lightweight icons. Example: https://cdnjs.cloudflare.com/ajax/libs/ionicons/5.5.2/css/ionicons.min.css

6. Analytics and Tracking

  • Google Analytics: JavaScript snippet for tracking user activities. Example: https://www.googletagmanager.com/gtag/js?id=UA-XXXXXXXXX-X

7. Framework-Specific Libraries

  • Tailwind CSS: For modern utility-first CSS design. Example: https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/2.2.19/tailwind.min.css

8. Polyfills

  • Babel Polyfill: For older browser support. Example: https://cdnjs.cloudflare.com/ajax/libs/babel-polyfill/7.12.1/polyfill.min.js
  • HTML5 Shiv: For HTML5 element support in older browsers like IE. Example: https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js

9. Web Components Libraries

  • Web Components Polyfill: To support older browsers. Example: https://cdnjs.cloudflare.com/ajax/libs/webcomponentsjs/2.4.3/webcomponents-loader.js

These CDNs help optimize delivery, ensuring faster load times and scalability for high-traffic websites.

or

1. CSS Frameworks

  • Bootstrap:
    • CSS: https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css
  • Tailwind CSS:
    • CSS: https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/2.2.19/tailwind.min.css
  • Bulma:
    • CSS: https://cdn.jsdelivr.net/npm/bulma@0.9.3/css/bulma.min.css

2. JavaScript Libraries

  • jQuery:
    • JS: https://code.jquery.com/jquery-3.5.1.min.js
  • Bootstrap:
    • JS: https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.bundle.min.js
  • Vue.js:
    • JS: https://cdn.jsdelivr.net/npm/vue@2.6.12/dist/vue.min.js
  • React:
    • JS: https://unpkg.com/react@17/umd/react.production.min.js
  • Angular:
    • JS: https://ajax.googleapis.com/ajax/libs/angularjs/1.8.2/angular.min.js

3. Icon Libraries

  • Font Awesome:
    • CSS: https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css
  • Ionicons:
    • CSS: https://cdnjs.cloudflare.com/ajax/libs/ionicons/5.5.2/css/ionicons.min.css

4. Fonts

  • Google Fonts:
    • Example: https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap

5. Analytics

  • Google Analytics:
    • JS: https://www.googletagmanager.com/gtag/js?id=UA-XXXXXXXXX-X

6. Utilities and Polyfills

  • Moment.js: For date manipulation.
    • JS: https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.29.1/moment.min.js
  • Babel Polyfill: For modern JavaScript features in older browsers.
    • JS: https://cdnjs.cloudflare.com/ajax/libs/babel-polyfill/7.12.1/polyfill.min.js
  • HTML5 Shiv: For older IE support.
    • JS: https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js

7. Miscellaneous

  • Popper.js: For tooltips and popovers.
    • JS: https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js
  • Axios: For making HTTP requests.
    • JS: https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js

These files cover a wide range of functionalities and are essential for building modern websites efficiently.

or

Here’s a comprehensive list of 50 important CDN files that you can use to enhance your website’s performance and functionality. This includes CSS, JavaScript libraries, frameworks, fonts, and more.

CSS Files

  1. Bootstrap CSS
    https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css
  2. Bootstrap Grid CSS
    https://cdnjs.cloudflare.com/ajax/libs/bootstrap-grid/4.1.3/bootstrap-grid.min.css
  3. Font Awesome CSS
    https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css
  4. Materialize CSS
    https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/materialize.min.css
  5. Tailwind CSS
    https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css
  6. Normalize CSS
    https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css
  7. Animate.css
    https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css
  8. Bulma CSS
    https://cdnjs.cloudflare.com/ajax/libs/bulma/0.9.3/css/bulma.min.css
  9. Spectre.css
    https://unpkg.com/spectre.css/dist/spectre.min.css
  10. Skeleton CSS
    https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.min.css

JavaScript Libraries

  1. jQuery
    https://code.jquery.com/jquery-3.5.1.min.js
  2. Bootstrap JS
    https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js
  3. Popper.js
    https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js
  4. Moment.js
    https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.29.1/moment.min.js
  5. Lodash
    https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.21/lodash.min.js
  6. Vue.js
    https://cdn.jsdelivr.net/npm/vue@2.6.12/dist/vue.min.js
  7. React
    https://cdnjs.cloudflare.com/ajax/libs/react/17.0.2/umd/react.production.min.js
  8. ReactDOM
    https://cdnjs.cloudflare.com/ajax/libs/react-dom/17.0.2/umd/react-dom.production.min.js
  9. Angular
    https://ajax.googleapis.com/ajax/libs/angularjs/1.8.2/angular.min.js
  10. D3.js
    https://cdnjs.cloudflare.com/ajax/libs/d3/7.0.0/d3.min.js

JavaScript Plugins

  1. Chart.js
    https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.9.4/Chart.min.js
  2. FullCalendar
    https://cdnjs.cloudflare.com/ajax/libs/fullcalendar/3.10.2/fullcalendar.min.js
  3. Slick Slider
    https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick.min.js
  4. Swiper
    https://cdnjs.cloudflare.com/ajax/libs/Swiper/8.0.7/swiper-bundle.min.js
  5. Isotope
    https://cdnjs.cloudflare.com/ajax/libs/jquery.isotope/3.0.6/isotope.pkgd.min.js

Fonts

  1. Google Fonts – Roboto
    https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap
  2. Google Fonts – Open Sans
    https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap
  3. Google Fonts – Lato
    https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap
  4. Google Fonts – Montserrat
    https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap
  5. Google Fonts – Poppins
    https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap

Polyfills

  1. Babel Polyfill
    https://cdnjs.cloudflare.com/ajax/libs/babel-polyfill/7.12.1/polyfill.min.js
  2. HTML5 Shiv
    https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js
  3. Respond.js
    https://cdnjs.cloudflare.com/ajax/libs/respond.js/1.4.2/respond.min.js
  4. Fetch Polyfill
    https://cdnjs.cloudflare.com/ajax/libs/fetch/3.6.2/fetch.min.js

Utility Libraries

  1. axios
    https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js
  2. Vuex
    https://cdn.jsdelivr.net/npm/vuex@3.6.2/dist/vuex.min.js
  3. Chart.js
    https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.9.4/Chart.min.js
  4. SweetAlert
    https://cdnjs.cloudflare.com/ajax/libs/sweetalert/1.1.3/sweetalert.min.js

Miscellaneous

  1. Google Tag Manager
    https://www.googletagmanager.com/gtag/js?id=UA-XXXXXXXXX-X
  2. Flickity
    https://cdnjs.cloudflare.com/ajax/libs/flickity/2.2.2/flickity.pkgd.min.js
  3. Lightbox2
    https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.3/css/lightbox.min.css
  4. WOW.js
    https://cdnjs.cloudflare.com/ajax/libs/wow/1.1.2/wow.min.js
  5. ProgressBar.js
    https://cdnjs.cloudflare.com/ajax/libs/progressbar.js/1.1.0/progressbar.min.js
  6. Select2
    https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.13/js/select2.min.js
  7. Quill
    https://cdn.quilljs.com/1.3.6/quill.js
  8. Prism.js
    https://cdnjs.cloudflare.com/ajax/libs/prism/1.25.0/prism.min.js
  9. Jest
    https://cdnjs.cloudflare.com/ajax/libs/jest/26.6.0/jest.min.js

SVG and Icons

  1. Ionicons
    https://cdnjs.cloudflare.com/ajax/libs/ionicons/5.5.2/css/ionicons.min.css
  2. SVG.js
    https://cdnjs.cloudflare.com/ajax/libs/svg.js/2.7.1/svg.min.js
  3. Feather Icons
    https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js

This list covers a wide range of libraries and frameworks that can enhance your website’s UI, performance, and functionality. Make sure to verify the versions and check if any updates are available when using them.

or

Here’s a comprehensive list of 100 important CDN files that can be used to enhance your website’s performance, accessibility, and functionality:

CSS Files

  1. Bootstrap CSS:
    https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css
  2. Bootstrap Theme:
    https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap-theme.min.css
  3. Font Awesome CSS:
    https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css
  4. Normalize.css:
    https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css
  5. Animate.css:
    https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css
  6. Materialize CSS:
    https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css
  7. Tailwind CSS:
    https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/2.2.19/tailwind.min.css
  8. Bulma CSS:
    https://cdnjs.cloudflare.com/ajax/libs/bulma/0.9.3/css/bulma.min.css
  9. Spectre.css:
    https://cdnjs.cloudflare.com/ajax/libs/spectre.css/0.5.9/spectre.min.css
  10. Pure.css:
    https://cdnjs.cloudflare.com/ajax/libs/pure/2.0.6/pure-min.css
  11. Foundation CSS:
    https://cdnjs.cloudflare.com/ajax/libs/foundation/6.6.3/css/foundation.min.css
  12. Semantic UI CSS:
    https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.css
  13. Skeleton CSS:
    https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.min.css
  14. Material Design Lite:
    https://cdnjs.cloudflare.com/ajax/libs/material-design-lite/1.3.0/material.indigo-pink.min.css
  15. Milligram CSS:
    https://cdnjs.cloudflare.com/ajax/libs/milligram/1.4.1/milligram.min.css
  16. Wing CSS:
    https://unpkg.com/wingcss@2.0.0/dist/wing.min.css
  17. Picnic CSS:
    https://cdnjs.cloudflare.com/ajax/libs/picnic/6.0.0/picnic.min.css
  18. Tachyons CSS:
    https://cdnjs.cloudflare.com/ajax/libs/tachyons/4.12.0/css/tachyons.min.css
  19. AOS CSS (Animate on Scroll):
    https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.1/aos.css
  20. Fonts.css:
    https://cdnjs.cloudflare.com/ajax/libs/fontsource/4.6.0/css/fontsource.min.css

JavaScript Libraries

  1. jQuery:
    https://code.jquery.com/jquery-3.5.1.min.js
  2. jQuery UI:
    https://code.jquery.com/ui/1.12.1/jquery-ui.min.js
  3. Bootstrap JS:
    https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.bundle.min.js
  4. Popper.js:
    https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js
  5. Vue.js:
    https://cdn.jsdelivr.net/npm/vue@2.6.12/dist/vue.min.js
  6. React:
    https://cdnjs.cloudflare.com/ajax/libs/react/17.0.2/umd/react.production.min.js
  7. ReactDOM:
    https://cdnjs.cloudflare.com/ajax/libs/react-dom/17.0.2/umd/react-dom.production.min.js
  8. Angular:
    https://ajax.googleapis.com/ajax/libs/angularjs/1.8.2/angular.min.js
  9. D3.js:
    https://cdnjs.cloudflare.com/ajax/libs/d3/7.3.0/d3.min.js
  10. Chart.js:
    https://cdnjs.cloudflare.com/ajax/libs/Chart.js/3.7.0/chart.min.js
  11. Moment.js:
    https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.29.1/moment.min.js
  12. Lodash:
    https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.21/lodash.min.js
  13. Axios:
    https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js
  14. GSAP:
    https://cdnjs.cloudflare.com/ajax/libs/gsap/3.9.1/gsap.min.js
  15. Anime.js:
    https://cdnjs.cloudflare.com/ajax/libs/animejs/3.2.1/anime.min.js
  16. Swiper:
    https://cdnjs.cloudflare.com/ajax/libs/Swiper/10.0.1/swiper-bundle.min.js
  17. Typed.js:
    https://cdnjs.cloudflare.com/ajax/libs/Typed.js/2.0.12/typed.min.js
  18. Isotope:
    https://cdnjs.cloudflare.com/ajax/libs/isotope/3.0.6/isotope.pkgd.min.js
  19. jQuery Validate:
    https://cdnjs.cloudflare.com/ajax/libs/jquery-validate/1.19.3/jquery.validate.min.js
  20. Modernizr:
    https://cdnjs.cloudflare.com/ajax/libs/modernizr/2.8.3/modernizr.min.js

JavaScript Plugins

  1. Lightbox2:
    https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.3/js/lightbox.min.js
  2. Slick Carousel:
    https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick.min.js
  3. Waypoints:
    https://cdnjs.cloudflare.com/ajax/libs/waypoints/4.0.1/jquery.waypoints.min.js
  4. Select2:
    https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.13/js/select2.min.js
  5. Owl Carousel:
    https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.min.js
  6. FancyBox:
    https://cdnjs.cloudflare.com/ajax/libs/fancybox/3.5.7/jquery.fancybox.min.js
  7. jQuery Countdown:
    https://cdnjs.cloudflare.com/ajax/libs/jquery-countdown/2.2.0/jquery.countdown.min.js
  8. Bootstrap Datepicker:
    https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.9.0/js/bootstrap-datepicker.min.js
  9. Flatpickr:
    https://cdnjs.cloudflare.com/ajax/libs/flatpickr/4.6.9/flatpickr.min.js
  10. Tippy.js:
    https://cdnjs.cloudflare.com/ajax/libs/tippy.js/6.3.1/umd.tippy-bundle.umd.min.js

Fonts

  1. Google Fonts:
    https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap
  2. Open Sans:
    https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap
  3. Lato:
    https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap
  4. Montserrat:
    https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap
  5. Raleway:
    https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&display=swap
  6. Poppins:
    https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap
  7. Playfair Display:
    https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap
  8. Noto Sans:
    https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap
  9. Oswald:
    https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&display=swap
  10. Source Sans Pro:
    https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;700&display=swap

Analytics and Tracking

  1. Google Analytics:
    https://www.googletagmanager.com/gtag/js?id=UA-XXXXXXXXX-X
  2. Hotjar:
    https://static.hotjar.com/c/hotjar-XXXXXX.js?sv=6
  3. Matomo:
    https://cdn.matomo.cloud/YOUR_MATOMO_URL/matomo.js
  4. Facebook Pixel:
    https://connect.facebook.net/en_US/fbevents.js
  5. LinkedIn Insight Tag:
    https://snap.licdn.com/li.lms-analytics/insight.min.js

Polyfills

  1. Babel Polyfill:
    https://cdnjs.cloudflare.com/ajax/libs/babel-polyfill/7.12.1/polyfill.min.js
  2. HTML5 Shiv:
    https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js
  3. Respond.js:
    https://cdnjs.cloudflare.com/ajax/libs/respond.js/1.4.2/respond.min.js
  4. ES6 Promise Polyfill:
    https://cdnjs.cloudflare.com/ajax/libs/es6-promise/4.2.8/es6-promise.auto.min.js
  5. Fetch Polyfill:
    https://cdnjs.cloudflare.com/ajax/libs/fetch/3.0.0/fetch.min.js

Web Components Libraries

  1. Web Components Polyfill:
    https://cdnjs.cloudflare.com/ajax/libs/webcomponentsjs/2.4.3/webcomponents-loader.js
  2. LitElement:
    https://unpkg.com/lit-element/lit-element.js
  3. PWA Polyfill:
    https://unpkg.com/@webcomponents/pwa-polyfill@2.0.0/dist/pwa-polyfill.js

Icon Libraries

  1. Ionicons:
    https://cdnjs.cloudflare.com/ajax/libs/ionicons/5.5.2/ionicons.min.css
  2. Material Icons:
    https://fonts.googleapis.com/icon?family=Material+Icons
  3. Feather Icons:
    https://unpkg.com/feather-icons/dist/feather.min.js

Additional Libraries

  1. Axios:
    https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js
  2. Swiper.js:
    https://cdnjs.cloudflare.com/ajax/libs/Swiper/10.0.1/swiper-bundle.min.js
  3. Clipboard.js:
    https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/2.0.6/clipboard.min.js
  4. Bootstrap Switch:
    https://cdnjs.cloudflare.com/ajax/libs/bootstrap-switch/3.3.4/js/bootstrap3/bootstrap-switch.min.js
  5. FullCalendar:
    https://cdnjs.cloudflare.com/ajax/libs/fullcalendar/5.10.1/main.min.js
  6. Daterangepicker:
    https://cdn.jsdelivr.net/npm/daterangepicker/daterangepicker.min.js
  7. Just-Validate:
    https://cdn.jsdelivr.net/npm/just-validate@latest/dist/just-validate.min.js
  8. Axios Cancel:
    https://cdn.jsdelivr.net/npm/axios-cancel@1.2.0/axios-cancel.min.js
  9. Jest:
    https://cdnjs.cloudflare.com/ajax/libs/jest/26.6.3/jest.min.js
  10. Three.js:
    https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js
  11. PixiJS:
    https://cdnjs.cloudflare.com/ajax/libs/pixijs/6.5.2/pixi.min.js
  12. Konva.js:
    https://cdnjs.cloudflare.com/ajax/libs/konvajs/8.3.1/konva.min.js
  13. Anime.js:
    https://cdnjs.cloudflare.com/ajax/libs/animejs/3.2.1/anime.min.js
  14. VeeValidate:
    https://cdn.jsdelivr.net/npm/vee-validate@latest/dist/vee-validate.full.min.js

Utility Libraries

  1. uuid.js:
    https://cdnjs.cloudflare.com/ajax/libs/uuid/8.3.2/uuid.min.js
  2. jquery.cookie:
    https://cdnjs.cloudflare.com/ajax/libs/jquery-cookie/1.4.1/jquery.cookie.min.js
  3. slugify:
    https://cdnjs.cloudflare.com/ajax/libs/slugify/1.6.0/slugify.min.js
  4. Mousetrap:
    https://cdnjs.cloudflare.com/ajax/libs/mousetrap/1.6.5/mousetrap.min.js
  5. Sticky-kit:
    https://cdnjs.cloudflare.com/ajax/libs/sticky-kit/1.1.3/sticky-kit.min.js

Other Libraries

  1. Quill:
    https://cdn.quilljs.com/1.3.6/quill.js
  2. CodeMirror:
    https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.65.2/codemirror.min.js
  3. Jodit:
    https://cdnjs.cloudflare.com/ajax/libs/jodit/3.5.12/jodit.min.js
  4. TinyMCE:
    https://cdnjs.cloudflare.com/ajax/libs/tinymce/5.10.4/tinymce.min.js
  5. PhotoSwipe:
    https://cdnjs.cloudflare.com/ajax/libs/photoswipe/4.1.3/photoswipe.min.js

Summary

This list includes a variety of CSS, JavaScript libraries, fonts, analytics tools, and more that can be easily integrated into your website using CDNs. Each entry contains a link to the CDN, making it simple to include these resources in your web projects. Adjust the versions or libraries based on your specific needs.

Patient safety assistant

Check your symptom safely

Hi, I am RX Symptom Navigator. I can help you understand what to read next and what warning signs need care.
Warning: Do not use this in emergencies, pregnancy, severe illness, or as a substitute for a doctor. For children or teens, use with a parent/guardian and clinician.
A rural-friendly guide: warning signs, when to see a doctor, related articles, tests to discuss, and OTC safety education.
1 Symptom 2 Severity 3 Safe guidance
First safety question

Is there chest pain, breathing trouble, fainting, confusion, severe bleeding, stroke-like weakness, severe injury, or pregnancy danger sign?

Choose quickly

Browse by body area
Start here: Write or select a symptom. The guide will show warning signs, doctor guidance, diagnostic tests to discuss, OTC safety education, and related RX articles.

Important: This tool is educational only. It cannot diagnose, treat, or replace a doctor. OTC information is not a prescription. In an emergency, contact local emergency services or go to the nearest hospital.

Doctor visit helper

Prepare before seeing a doctor

A simple rural-patient checklist to help you explain symptoms clearly, ask better questions, and avoid unsafe self-treatment.

Safety note: This is not a prescription or diagnosis. For severe symptoms, pregnancy danger signs, children with serious illness, chest pain, breathing difficulty, stroke-like weakness, or major injury, seek urgent care.

Which doctor may help?

Start with a registered doctor or the nearest qualified health center.

What to tell the doctor

  • Write when the problem started and how it changed.
  • Bring old prescriptions, investigation reports, and current medicines.
  • Write allergies, pregnancy status, diabetes, kidney/liver disease, and major past illnesses.
  • Bring one family member if the patient is weak, elderly, confused, or a child.

Questions to ask

  • What is the most likely cause of my symptoms?
  • Which danger signs mean I should go to hospital quickly?
  • Which tests are necessary now, and which can wait?
  • How should I take medicines safely and what side effects should I watch for?
  • When should I come for follow-up?

Tests to discuss

  • Vital signs: temperature, pulse, blood pressure, oxygen saturation
  • Basic physical examination by a clinician
  • CBC, urine test, blood sugar, or imaging only when clinically needed

Avoid these mistakes

  • Do not use antibiotics, steroid tablets/injections, or strong painkillers without proper medical advice.
  • Do not hide pregnancy, kidney disease, ulcer, allergy, or blood thinner use.
  • Do not delay emergency care when danger signs are present.

Medicine safety and first-aid guide

This section is for patient education only. It does not replace a doctor, pharmacist, or emergency care.

Safe first steps

  • Rest, drink safe water, and observe symptoms carefully.
  • Keep a written note of symptoms, duration, temperature, medicines already taken, and allergy history.
  • Seek medical care quickly if symptoms are severe, worsening, or unusual for the patient.

OTC medicine safety

  • For mild pain or fever, ask a registered pharmacist or doctor before using common over-the-counter pain/fever medicines.
  • Do not combine multiple pain medicines without advice, especially if you have kidney disease, liver disease, stomach ulcer, asthma, pregnancy, or take blood thinners.
  • Do not give adult medicines to children unless a qualified clinician advises it.

Avoid these mistakes

  • Do not start antibiotics without a proper medical decision.
  • Do not use steroid tablets or injections casually for quick relief.
  • Do not delay emergency care because of home remedies.

Get urgent help if

  • Severe symptoms, confusion, fainting, breathing difficulty, chest pain, severe dehydration, or sudden weakness need urgent medical care.
Medicine names, dose, and timing must be decided by a qualified clinician or pharmacist after checking age, pregnancy, allergy, other diseases, and current medicines.

For rural patients and family caregivers

Patient health record and symptom diary

Write your symptoms, medicines already taken, test results, and questions before visiting a doctor. This note stays on your device unless you print or copy it.

Doctor to discuss: Doctor / qualified healthcare provider
Tests to discuss with doctor
  • Basic vital signs: temperature, pulse, blood pressure, oxygen level if needed
  • Relevant blood, urine, imaging, or specialist tests only after clinical assessment
Questions to ask
  • What is the most likely cause of my symptoms?
  • Which warning signs mean I should go to emergency care?
  • Which tests are really needed now?
  • Which medicines are safe for my age, pregnancy status, allergy, kidney/liver/stomach condition, and current medicines?

Emergency warning signs such as chest pain, severe breathing difficulty, sudden weakness, confusion, severe dehydration, major injury, or loss of bladder/bowel control need urgent medical care. Do not wait for online information.

Safe pathway to proper treatment

Patient care roadmap

Use this simple roadmap to understand the next safe steps. It is educational and does not replace examination by a doctor.

Go to emergency care if you notice:
  • Severe or rapidly worsening symptoms
  • Breathing difficulty, chest pain, fainting, confusion, severe weakness, major injury, or severe dehydration
Doctor / service to discuss: Qualified healthcare provider; specialist depends on symptoms and examination.
  1. Step 1

    Check danger signs first

    If danger signs are present, seek emergency care and do not wait for online information.

  2. Step 2

    Record the symptom story

    Write when symptoms started, severity, medicines already taken, allergies, pregnancy status, and test results.

  3. Step 3

    Visit a qualified clinician

    A doctor, nurse, or qualified healthcare provider can examine you and decide which tests or treatment are needed.

  4. Step 4

    Do only useful tests

    Do tests after clinical assessment. Avoid unnecessary tests, random antibiotics, or repeated medicines without diagnosis.

  5. Step 5

    Follow up and return early if worse

    If symptoms worsen, new warning signs appear, or treatment is not helping, return for review quickly.

Rural patient practical tips
  • Take a written symptom diary and all previous prescriptions/test reports.
  • Do not hide medicines already taken, even herbal or over-the-counter medicines.
  • Ask which warning signs mean urgent referral to hospital.

This roadmap is for education. A real diagnosis and treatment plan requires history, examination, and clinical judgment.

RX Patient Help

Ask a health question safely

Write your symptom story. A health professional or site editor can review it before any answer is prepared. This box is not for emergency care.

Emergency first: Severe chest pain, breathing trouble, unconsciousness, stroke signs, severe injury, heavy bleeding, or rapidly worsening symptoms need urgent local medical care now.

Frequently Asked Questions

Is this article a replacement for a doctor?

No. It is educational content only. Patients should consult a qualified clinician for diagnosis and treatment.

When should I seek urgent care?

Seek urgent care for severe symptoms, rapidly worsening condition, breathing difficulty, severe pain, neurological changes, or any emergency warning sign.

References

Add references, clinical guidelines, textbooks, journal articles, or trusted medical sources here. You can edit this area from the RX Article Professional Blocks panel.