Google Page insight tells us to optimize CSS file like this :
Vous pouvez alors incorporer le code CSS essentiel comme ceci :
<html>
<head>
<style>
.blue{color:blue;}
</style>
</head>
<body>
<div class="blue">
Hello, world!
</div>
</body>
</html>
<link rel="stylesheet" href="small.css">
source : https://developers.google.com/speed/docs/insights/OptimizeCSSDelivery

The French link is https://developers.google.com/speed/docs/insights/OptimizeCSSDelivery?hl=fr
I’ve never seen such a thing : Integrate css files after the closing </html> tag.
I’t’s not only in the documentation. It also modify the result of PageSpeed Insights score. I have 100% if i insert css file at the end.
Is it valid HTML ?
</body>tag. - Alex