answersLogoWhite

0


Best Answer

An external style sheet written to the Cascading Style Sheet standards will have a .css file extension. If you are using notepad you will have to manually set this as the file extension. Most web editors will allow you to select this extension when you go to save the file.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the file name extentesion of an externel style sheet?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What are cascading sheetswhat are the 3 ways using them in designing web pagesexplain with an example?

Three Ways to Insert CSSThere are three ways of inserting a style sheet: External style sheetInternal style sheetInline style An external style sheet is ideal when the style is applied to many pages. With an external style sheet, you can change the look of an entire Web site by changing one file. Each page must link to the style sheet using the tag. The tag goes inside the head section: An external style sheet can be written in any text editor. The file should not contain any HTML tags. Your style sheet should be saved with a .css extension. An example of a style sheet file is shown below: hr {color:sienna;}p {margin-left:20px;}body {background-image:URL("images/back40.gif");}


How can you use style sheet and where?

You can use it anywhere that supports a link to a CSS file.


Can A style sheet can contain many Cascading style sheet rules and their properties?

Yes. A single style-sheet can contain hundreds or even thousands of rules. (If you have thousands of rules, you should probably split them up for the sake of download time.) But there is no theoretical limit on the size of a CSS stylesheet file that doesn't apply to any other file.


What extension saves an external style sheet?

When you create an external style sheet for your Web pages, you should name the file following similar naming conventions for your HTML files. When you save it, you use the file extension .css so the browser will recognize that it is a CSS stylesheet.


How do you get a pink background for an HTML file?

You should use a style sheet to do this. In between the <head> and </head> tags, place the following: <style type="text/css"> <!-- body {background-color:pink;} //--> </style>


What are the Differences between style sheet and templates?

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.


How do you save the DHTML file?

<html> <head> <title>in line style sheet </title> </head> <body> <hr>dfdsfdsfsdfdsf</hr> </boday> </html>


What is CSS in Dreamweaver?

CSS (Cascading Style Sheet) is an alternative way to style a web page. Using CSS makes the page load faster because the CSS code is in an external file not in the actual HTML document.


What is a cue sheet?

A cue sheet or cue file is a meta data file which describes how the tracks of a CD or DVD are laid out.


Where you have to save the css file?

You have to provide a valid path in your HTML file so it can "see" the style sheet. If you have a simple site, put your style sheet(s) (e.g. "styles.css") into the same directory as your HTML files and refer to them like this: <link rel="stylesheet" href="styles.css" type="text/css" /> however, you can put your style sheets wherever you please, as long as you refer to them correctly. They might even be in other domains. For simple projects, keep everything in one place, so you can avoid headaches when moving your projects around.


How do you use your CSS code?

In order to use a Cascading Style Sheet, you must link it to your site by placing this line of code between your tags:You would enter the name of your CSS file where it says "yourstylesheet.css". Make sure that this file is in your root folder.


Is used for adding CSS to the entire site?

You use a separate style sheet file with all of the styles you need defined in it. In each page you put a link to that file and the styles can be used by the entire site. Say your file is called Styles.css then you would have the following in the head area of each page: