How to html5 direct print
Hi Experts,
I am using HTML 5 in Windows XP. Please suggest me how can html 5 direct print. Please suggest me the step wise solution, because I am newbie in HTML 5. Thanks.
Regards,
Furby baskins
Hi Experts,
I am using HTML 5 in Windows XP. Please suggest me how can html 5 direct print. Please suggest me the step wise solution, because I am newbie in HTML 5. Thanks.
Regards,
Furby baskins
Hello Furby Baskins,
Thanks for sharing your problem with us, If you want to print a text with large font than you can use heading tag(<h>). If you want to bold ,underline your text than you can use <B> tag,and <U> tag. To break a line you can use < BR > tag. To color your text you can use <font> tag with attribute as color. To make a paragraph you can use <p> tag. For example :-
<html>
<title> My Web</title>
<body>
<h1> My Web Page</h1></ br>
<p><b><u>This is My first web page</u></b></p>
</body>
<html>
I hope this will help you.
Thanks.