setTimeout(async () => { const ss = document.createElement('link'); ss.setAttribute('rel', 'stylesheet'); ss.setAttribute('type', 'style/css'); ss.setAttribute('href', 'styles.css'); document.body.appendChild(ss); const test = await fetch('styles.css'); const resultsBody = await test.text(); console.log(resultsBody); }, 2000);