<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="utf-8">
<title>Contoh dari attribute selector</title>
<style>
[title] {
color:blue;
}
</style>
</head>
<body>
<h1 title="heading">Attribute Selector</h1>
<p title="paragraph">Warna dari paragraph ini akan menjadi biru.</p>
</body>
</html>
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.