4. Why do we include CSS files inside the head element and not inside the body element? code example
Example: css in head or body
<head>
<style>
.myclass { font-size: 12px; }
</style>
</head>
// or ...
<body>
<button style="font-size: 12px;"></button>
</body>