Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 399 Bytes

Local do arquivo script no HTML.md

File metadata and controls

19 lines (16 loc) · 399 Bytes

Antes do fechamento da tag body:

<script src="arquivo.js"></script>
</body>
</html>

Antes do fechamento da tag html:

</body>
<script src="arquivo.js"></script>
</html>

Ou na tag head com a atributo [[defer]] para carregar o arquivo após o código hyper text markup language e cascading style sheets.


Fontes: Projetos pessoais Tags: #softwaredevelopment