Berikut ini cara mematikan tautan (link) agar tidak bisa di-hover maupun di-klik. .not-active { pointer-events: none; cursor: default; text-decoration: none; color: black; } panggil class tersebut dalam tag HTML. <a href="link.html" class="not-active">Link</a>
Read More »CSS & HTML
CSS : Menambahkan Google Font
Menggunakan @import. Contoh perintahnya : @import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600'); contoh penggunaan : <style> @import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600'); </style>
Read More »