tag link
tag ini digunakan untuk menggunakan resource css dari luar halaman.contoh penulisan kode
<link rel="stylesheet" type="text/css" href="https://www.w3schools.com/w3css/4/w3.css"/>
dari kode diatas saya memanggil resource css berasal dari w3schools.
tag style
tag style berfungsi untuk memasukan kode css secara internal.contoh penulisan kode
<style type="text/css">
body{backgroud:black;}
</style>
tag script
tag script berfungsi untuk menggunakan resource javascript dari luar halamancontoh penulisan kode
<script type="text/javascript" src="https://www.w3schools.com/lib/w3schools_footer.js"></script>
Komentar