<!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>
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.