<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="utf-8">
<title>Contoh dari attribute selector</title>
<style>
    abbr[title] {
		color: red;
	}
</style>
</head>
<body>
    <p><abbr title="Hyper Text Markup Language">HTML</abbr> adalah bahasa World Wide Web.</p>
</body>
</html>  

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.