A mixin for writing @font-face rules in SASS.
Create a font face rule. Embedded OpenType, WOFF2, WOFF, TrueType, and SVG files are automatically sourced.
@include font-face(Samplino, fonts/Samplino);| // Kilka fajnych checklist | |
| https://www.testing-web-sites.co.uk/testing-plans-checklists/download-checklists/ | |
| // Zbiory porad | |
| https://www.slideshare.net/precisetestingsolution/ecommerce-website-testing-checklist | |
| http://www.softwaretestinghelp.com/ecommerce-testing/ | |
| https://www.testing-web-sites.co.uk/testing-plans-checklists/testing-plan-for-an-ecommerce-site/ | |
| https://www.linkedin.com/pulse/20140715120218-53574772-e-commerce-website-testing-checklist | |
| https://www.guru99.com/testing-e-commerce-applications.html | |
| http://www.practicalecommerce.com/What-to-Test-on-an-Ecommerce-Site |
| { | |
| "env": { | |
| "browser": true, | |
| "node": true, | |
| "es6": true | |
| }, | |
| "plugins": ["react"], | |
| "ecmaFeatures": { |
| this worked very nice for a single page site | |
| ``` | |
| wget \ | |
| --recursive \ | |
| --page-requisites \ | |
| --convert-links \ | |
| [website] | |
| ``` | |
| wget options |
| #301 Redirects for .htaccess | |
| #Redirect a single page: | |
| Redirect 301 /pagename.php http://www.domain.com/pagename.html | |
| #Redirect an entire site: | |
| Redirect 301 / http://www.domain.com/ | |
| #Redirect an entire site to a sub folder | |
| Redirect 301 / http://www.domain.com/subfolder/ |