I’m searching for a program or website that does convert html-code and css-code into a single html-sequence.
|| CSS
div { color: #eaf; }
|| HTML
<div>Foo</div>
<p>Bar <div>& Spam!</div></p>
Should be converted to
<div style="color:#eaf;">Foo</div>
<p>Bar <div style="color:#eaf;">& Spam!</div></p>
Why I search for it?
Because most email-clients do not support <style></style> in the email’s body.
Thanks!
Proper syntax would be…
Here’s a link to an online tool.
Here’s another link to an online tool.
I’ve used both of these in the past with good results.