<!DOCTYPE html>
<title>Example</title>
<style>
:lang(fr) {
color: yellowgreen;
}
:lang(en) {
color: orange;
</style>
<h1 lang="fr">Bonjour</h1>
<h1 lang="en">Hello</h1>