Skip to content

Instantly share code, notes, and snippets.

View siddiknmh's full-sized avatar

AB Siddik siddiknmh

View GitHub Profile
@siddiknmh
siddiknmh / awesome-php.md
Created July 22, 2023 17:57 — forked from llbbl/awesome-php.md
Awesome PHP Libraries and Resources

Awesome PHP

A list of amazingly awesome PHP libraries, resources and shiny things.

Categories

  • Composer
  • Composer Related
  • Frameworks
  • Micro Frameworks
@siddiknmh
siddiknmh / CSS-Media-Queries.css
Created August 23, 2022 09:40
CSS Media Queries for Mobile, Tablet, Desktop, HD, 2K & 4K Display
/*
##Device = 4K Screen Desktops
##Screen = 3840px to higher resolution desktops
*/
@media screen and (min-width: 3840px) {
/* Write your code from here */
}
/*