I have several HTML (more than 500 HTML) that will use the same title for all, for example: "Projects for 2017" will be the title in the 500 files
Then I'll need to change the title for "2018 Projects"
But I do not want to have the job of opening all 500 html and just changing one word in each
What I wanted was to change the title in just one file and thus change in all the other 500 at one time
How can I do this using CSS through <link href="*.css" type="text/css" />
???
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sem título</title>
<style type="text/css">
.title div:after {
content: "Andrei webmaster";
}
.titlecenter {
text-align: center;
color: #F00;
font-weight: bold;
}
</style>
</head>
<body>
<div class="title">
<div class="titlecenter"></div>
</div>
</body>
</html>