answersLogoWhite

0

Templates can be composed of HTML/XHTML files, images, and a CSS file. They all work together to make a site, but the CSS has the control over how it looks.

A CSS file by itself is just that. A CSS file of no use until it is linked to bt web pages to use its styling properties.

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

Is there a difference between style sheets and templates If so what are they?

Is there a difference between style sheets and templates? If so, what are they?


What Is there a difference between style sheets and templates If so what are they?

Is there a difference between style sheets and templates? If so, what are they?


What is CSS in web application?

CSS is a "cascading style sheet" which use for website templates designing. Moto of CSS is that how HTML elements are to be displayed.


What are the Differences between Victorian and regency style?

its is that there is no answer


Difference between embedded style sheet and linked style sheet?

Actually, there is no difference between an embedded style sheet and a linked style sheet. They are exactly the same thing, just different wording to describe the same process. To embed a style sheet into a document, you use the <link /> tag within the <head> tag of an HTML document. An example is: <link rel="stylesheet" href="style.css" type="text/css" />


Where might one go to find free CSS templates?

There are many websites that will provide you with free CSS (Cascading Style Sheet) templates that you can employ at your own website. It is best to use those from the "open source" sites. These templates allow you to quickly and easily construct webpages that conform to known standards.


What type of style sheet uses the style tag?

CSS (Cascading style sheet)


What is the HTML tag used to define an internal style sheet?

If you are looking to use an internal style sheet, you are going to need to use the <style> tag. This tag has both an opening and a closing tag and in between the two tags is where you list all of the CSS rules and declarations that you are wanting to include. Internal style sheets are used when the rules you are creating are only needed on the page that you are adding the rules to. If you plan on using the rules on multiple pages, it would be better to use an external style sheet and embed the style sheet on each of the pages. An example of an internal style sheet would look like: <style type="text/css" media="all"> body { background-color: #FFFFFF; } p { text-color: #000000; text-weight: normal; } </style>


Can you connect an external css sheet to Microsoft publisher 2013 and if so how?

1.) On the Tools menu, click Templates and Add-ins.2.) Click Linked CSS.3.) Click Add.4.) Select the cascading style sheet (CSS) you want to add, and then click OK.5.) Repeat steps 3 and 4 to attach more style sheets, or click OK if you are finished.The styles from the cascading style sheet will appear in the Styles and Formatting task pane.


What is the function of xml-style sheet href?

That would refer to the location of the style sheet for your XML document


How do you edit an already created style sheet and then save it with a new name?

To edit an already created style sheet and then save it with a new name, first load the style sheet. Then, save the sheet with a new name so that changes will remain separated from the original sheet. Then, make the changes to the sheet using the editing functions.


What is the meaning of cascading?

The cascading that is referred to in the name cascading style sheets refers to how rules can cascade in how they are implement. CSS rules can be found in three places: an external style sheet, and internal style sheet, or inline. Cascading refers to precedence. A rule located inline, will take precedence over a rule located in an internal style sheet and a rule located in an internal style sheet will take precedence over a rule located in an external style sheet. Within a single style sheet (for example an external style sheet) a rule located at the bottom of the style sheet takes precedence over a rule located at the top of the style sheet. This allows you fine tuned control over your styles and how and when they display and which one will display based upon where in the cascading hierarchy they appear.