Advertisement
satishfrontenddev5

Untitled

Feb 18th, 2024 (edited)
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. How many ways to fetch API?
  2.  
  3. fetch API: Provides a modern, promise-based interface for making network requests in the browser. [1]
  4. Axios: A popular third-party library for making HTTP requests in both the browser and Node.js environments. It provides a simpler and more efficient API compared to Fetch. [2]
  5. XMLHttpRequest (XHR): The traditional method for making HTTP requests in JavaScript, commonly used before Fetch API became available. It's low-level and less intuitive compared to Fetch. [4]
  6. jQuery Ajax
  7.  
  8. what are the css frameworks you have used?
  9. Materialize CSS
  10. Bootstrap
  11. Tailwind CSS
  12. styled compoentn
  13. Skeleton
  14.  
  15.  
  16. How to make responsive wesite using tailwind?
  17.  
  18. Utilize Tailwind's responsive utility variants, such as sm:, md:, lg:, and xl:, to adjust styles based on screen sizes. These variants allow you to specify different styles for small, medium, large, and extra-large screens[2].
  19. Apply responsive breakpoints using min-width or max-width parameters to customize styles for various screen sizes[1].
  20. Leverage hover: prefix to add responsive hover effects. You can customize the hover behavior using this prefix, providing interactive experiences for users[4].
  21. Design responsive layouts by combining Tailwind CSS classes with flexbox or grid utilities to create dynamic and adaptable designs for different screen sizes[5].
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement