answersLogoWhite

0

Add this:

<link rel="stylesheet" href="normalview.css" type="text/css" media="screen" /> <link rel="styleshet" href="printview.css" type="text/css" media="print" />

User Avatar

Wiki User

16y ago

What else can I help you with?

Continue Learning about Engineering

What are two way to change value of a css property?

There are not two but three ways to change. Inline, Internal and External CSS are three ways of changing CSS.


Which property is used to change the left margin of an element in css?

ds,j css


What is valid css?

Valid CSS is CSS that has been run through the W3C CSS checker and passed.


What is CSS File and why it is used?

A CSS file can tell the web browser how a web page is supposed to look. The web page (HTML file) itself says what words are on the page, and which pictures, but you CAN use the CSS file to specify what goes where, how big, what color and font, and things like that.You CAN also specify all those things in the HTML file. The biggest advantages of using separate CSS are:The same CSS file can be used for all pages in a site, so if you want to change something, you can just change it in one place, and all the pages will now look the way you want.If you use the same CSS file for every page, your pages will load faster, since the browser does not re-fetch the CSS file every time.


How does CSS save a lot of work in web development?

CSS allows you to save time in web site development by allowing you to declare styles once and have those rules apply to every page in your web site. Prior to CSS, you would have to use HTML elements and attributes every time you wanted to set a particular style, which meant when you wanted to make a change you would have to go through all of your code on all of your pages making the change. With CSS, you declare it one time, and if you want to change it, you only have to change it in one place. This saves time and money.