I have to build some email templates using basic HTML and CSS.
I have found this page which details which CSS styles are most supported in various email clients. I understand these will work as inline styles. However I'd like to put them in the head section of the email as it will be a bit cleaner, can I do that as well and will it be well supported? E.g.
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
/* CSS goes here */
</style>
</head>
<body>
Email goes here
</body>
</html>
Many thanks!