Fancy HTML display/print program?

A

Anton81

Hi,

is there a (linux) program which can display and print HTML file in a high
quality format (tables,...)?

Anton
 
L

Lew Pitcher

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hi,

is there a (linux) program which can display and print HTML file in a high
quality format (tables,...)?

firefox ?


- --

Lew Pitcher, IT Specialist, Corporate Technology Solutions,
Enterprise Technology Solutions, TD Bank Financial Group

(Opinions expressed here are my own, not my employer's)
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2 (MingW32)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFECJE3agVFX4UWr64RAoCKAJ4xcb1NmfltNpaAV2bYItdjlukbrgCbBZTN
hPXYwXFExR+o4XRQdBBH4Tg=
=hEau
-----END PGP SIGNATURE-----
 
R

ray

Hi,

is there a (linux) program which can display and print HTML file in a high
quality format (tables,...)?

Anton

I don't quite see what you're getting at, could you elaborate a little?
 
R

Robert Hull

In comp.os.linux.misc, on Fri 03 March 2006 18:31, Anton81
Hi,

is there a (linux) program which can display and print HTML file in a
high quality format (tables,...)?
Yes
 
B

Blinky the Shark

Anton81 said:
is there a (linux) program which can display and print HTML file in a high
quality format (tables,...)?

Your graphical browser.
 
A

Anton81

is there a (linux) program which can display and print HTML file in a
Opera? Konqueror? Mozilla?

As you might guess I'm not satisfied with the plain output that common
browser produce when I want fancy output of important documents. Is there
on option to add a nice "style" or convert it to prettier formats?

Anton
 
A

Adrienne Boswell

As you might guess I'm not satisfied with the plain output that common
browser produce when I want fancy output of important documents. Is
there on option to add a nice "style" or convert it to prettier
formats?


Sure, style them with CSS. Mind you, styling is only a suggestion and
the users printer may ignore it. For example, say you have a page with
navigation on the left and legalese on the bottom. You might want to not
print the navigation (after all, people can't follow hyperlinks on
paper), and you might want to add more to the legalese at print time.

So your CSS might be:

@media screen {
#legalese {
font-size:85%
}
#morelegalese {
display:none
}
}
@media print {
#legalese {
font-size:100%;
}
#morelegalese {
display:block;
font-weight:bold;
font-size:100%
}
#nav {
display:none
}
}

And your markup:

<div id="nav">
....
</div>
<div id="legalese">....</div>
<div id="morelegalese"><img src="mybigwarning.png" alt="This is a big
warning"></div>
 
A

Andy Dingley

As you might guess I'm not satisfied with the plain output that common
browser produce when I want fancy output of important documents.

There's no HTML option for "important". Browser output should be just as
"plain" or "fancy" as the HTML + CSS that you feed it. No more, no less.
If you want a document that's more fancy than a simple document, then
this is a problem with your document. Learn some CSS (it's powerful
enough to do pretty much anything you can want), don't blame the print
renderer.

Do you have a specific request? If you can point us at an example, then
we might be able to be more specifically helpful.
 
A

Anton81

As you might guess I'm not satisfied with the plain output that common
There's no HTML option for "important". Browser output should be just as
"plain" or "fancy" as the HTML + CSS that you feed it. No more, no less.
If you want a document that's more fancy than a simple document, then
this is a problem with your document. Learn some CSS (it's powerful
enough to do pretty much anything you can want), don't blame the print
renderer.

Do you have a specific request? If you can point us at an example, then
we might be able to be more specifically helpful.

I only know a bit of HTML, but I'll dig into HTML+CSS myself. At the moment
I have command and programming cheat lists that I want to display nicely.
With different fonts, colors, anti-aliasing, and so on... for basic stuff
like tables.

Anton
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,755
Messages
2,569,536
Members
45,011
Latest member
AjaUqq1950

Latest Threads

Top