I have multiple html pages with same structure and i want to change style of specific class (for example .button) only in one of those html pages (same structure pages) The only unique thing about those html pages is title names unique name My question is it possible to select a specific class using css, where title name is "unique name"?
<html>
<head>
<title>unique name</title>
</head>
<body>
<div class="button"></div>
</body>
</html>