Forum Moderators: not2easy
I'm looking for a way by which I can convert an HTML and CSS to a file, in which the styles will be expanded and put in each and every places where it is mentioned. I know that this is a weird and also a step-back process. But, I'm in need of such a Converter/Compressor, which will do this job.
SIMPLE EXAMPLE:
<style type="text/css">
<!--
p {
font-family: Verdana, Arial, Helvetica, sans-serif;
}
-->
</style>
</head>
-----------------------------------------------------
//With CSS
<body>
<p>1st paragraph</p>
<p>2nd paragraph</p>
<p>3rd paragraph</p>
-----------------------------------------------------
//Without CSS
<p><font face="Verdana, Arial, Helvetica, sans-serif">1st paragraph</font></p>
<p><font face="Verdana, Arial, Helvetica, sans-serif">2nd paragraph</font></p>
<p><font face="Verdana, Arial, Helvetica, sans-serif">3rd paragraph</font></p>
Thanks
Srik
This puts everything, css, images 'n' all into a single file. The resulting format is a hotch potch of HTML and MIME encoded content, but it might help you out.
Just browse to a web page on Internet Explorer, select "File ¦ Save As..." then choose "Web Archive, single file (*.mht)".
Like you said, it's an odd request and while it would certainly be worth the time to do a search of the shareware sites on the off-chance you might find something, but I doubt if you're going to find anything that will do the job.