Navegador da Web
html
<script src="path/to/dayjs/dayjs.min.js"></script>
<script>
dayjs().format();
</script>
Recurso de CDN
Day.js pode ser incluído através de um CDN, como cdnjs.com, unpkg e jsDelivr.
html
<!-- Exemplo de CDN (jsDelivr) -->
<script src="https://cdn.jsdelivr.net/npm/dayjs@1/dayjs.min.js"></script>
<script>
dayjs().format();
</script>
Para mais informações sobre como carregar locales e plugins, consulte aqui.