CristhGunners - Desarrollador de Software

Cristhofer Andana

Desarrollador de Software

Preload archivos CSS en HTML

html

enero 01, 2023

Preload archivos CSS en HTML :

<!-- preload CSS file -->
<link rel="preload" href="styles.css" as="style" />

<!-- use preloaded styles -->
<link rel="stylesheet" href="styles.css" />