Skip to content

Instantly share code, notes, and snippets.

@Barrz417
Barrz417 / app.js
Created June 26, 2024 20:45 — forked from codigoconjuan/app.js
Picture con imágenes AVIF y WEBP
imagen.innerHTML = `
<source srcset="build/img/gallery/thumb/${i}.avif" type="image/avif">
<source srcset="build/img/gallery/thumb/${i}.webp" type="image/webp">
<img loading="lazy" width="200" height="300" src="build/img/gallery/thumb/${i}.jpg" alt="imagen galeria">
`;
@Barrz417
Barrz417 / httpd.conf
Created June 26, 2024 19:53 — forked from codigoconjuan/httpd.conf
Gist para Configurar PHP 8
LoadModule php_module "C:/php/php8apache2_4.dll"
AddHandler application/x-httpd-php .php
PHPIniDir "c:/php"