Home » Code Snippets

CSS font-color2

{ font-color:#{yourfontcolor}; }

 November 28, 2019(Updated : November 28, 2019)

CSS font-color

style="font-color:#{yourfontcolor};"

 November 28, 2019(Updated : November 28, 2019)

Change font color

{ font-color:#{yourfontcolor}; }

 November 28, 2019(Updated : November 28, 2019)

Gzip apache

<IfModule mod_deflate.c> AddOutputFilterByType DEFLATE application/atom+xml AddOutputFilterByType DEFLATE application/ecmascript AddOutputFilterByType DEFLATE application/javascript AddOutputFilterByType DEFLATE application/json AddOutputFilterByType DEFLATE application/ld+json AddOutputFilterByType DEFLATE application/manifest+json AddOutputFilterByType DEFLATE application/postscript AddOutputFilterByType DEFLATE application/rss+xml AddOutputFilterByType DEFLATE application/vnd.geo+json AddOutputFilterByType DEFLATE application/vnd.ms-fontobject AddOutputFilterByType DEFLATE application/x-font AddOutputFilterByType DEFLATE application/x-font-opentype AddOutputFilterByType DEFLATE application/x-font-otf AddOutputFilterByType DEFLATE application/x-font-truetype AddOutputFilterByType DEFLATE application/x-font-ttf AddOutputFilterByType DEFLATE application/x-javascript AddOutputFilterByType DEFLATE application/x-web-app-manifest+json AddOutputFilterByType DEFLATE […]

 October 5, 2019(Updated : October 5, 2019)

Expires headers apache

<filesMatch ".(eot|otf|woff|woff2|ttf|js|jpg|jpeg|gif|png|bmp|ico|svgz|svg|mid|midi|wav|mp3|ogg|ogv|mp4|swf)$"> Header set Cache-Control "max-age=31536000, public" </filesMatch> <filesMatch ".(css|js|rss|atom|zip|tgz|gz|rar|bz2|tar|pdf|doc|rtf|xls|exe|ppt)$"> Header set Cache-Control "max-age=2628000, public" </filesMatch>

 October 1, 2019(Updated : October 1, 2019)

Expires headers nginx

location ~* .(eot|otf|woff|woff2|ttf|js|jpg|jpeg|gif|png|bmp|ico|svgz|svg|mid|midi|wav|mp3|ogg|ogv|mp4|swf)$ { expires max; log_not_found off; access_log off; add_header Cache-Control "public, no-transform"; } location ~* .(css|js|rss|atom|zip|tgz|gz|rar|bz2|tar|pdf|doc|rtf|xls|exe|ppt)$ { expires 30d; log_not_found off; access_log off; }

 October 1, 2019(Updated : October 1, 2019)

Gzip nginx

gzip on; gzip_types application/atom+xml application/ecmascript application/javascript application/json application/ld+json application/manifest+json application/postscript application/rss+xml application/vnd.geo+json application/vnd.ms-fontobject application/x-font application/x-font-opentype application/x-font-otf application/x-font-truetype application/x-font-ttf application/x-javascript application/x-web-app-manifest+json application/xhtml+xml application/xml application/xml+rss font/opentype font/otf font/ttf image/bmp image/svg+xml image/x-icon text/cache-manifest text/css text/csv text/plain text/vcard text/vnd.rim.location.xloc text/vtt text/x-component text/x-cross-domain-policy text/xml; gzip_disable "msie6"; gzip_vary on; gzip_proxied any; gzip_comp_level 6; gzip_min_length 50; gzip_buffers 16 8k; gzip_http_version 1.1;

 September 30, 2019(Updated : October 5, 2019)

Recent Posts
  • Registration of domain name : I recommend Namecheap (my review)
  • Pcloud review : A better cloud storage than Dropbox, iCloud, Google Photos…
  • How to install a WordPress Theme
  • How to post on Instagram from a PC or Mac
  • Website speed tester : How to check if your website is fast?
Creator in Pj's

Creator in Pj's

  • Home
  • About
  • Privacy Policy
  • Terms of Service
© 2025 All rights reserved · creatorpjs.com