fr 〉
Programmation / codage 〉
HTML 〉
Comment inclure du code CSS dans du code HTML

This guide also exist in:
English (English)<style> avec votre code CSS, dans la section <head>.<!DOCTYPE html>
<html>
<head>
<style type="text/css">
.intro{
font-size: 110%;
color: blue;
}
</style>
</head>
<body>
...
</body>
</html>
HTML