answersLogoWhite

0

It is sipmply a link to a stylesheet that is separate from the HTML document and contained in the Head element of the document. This references something I did:

<link href="crigbypubs.css" type="text/css" rel="stylesheet" media="screen"/>

<link href="print.css" type="text/css" rel="stylesheet" media="print"/>

done in XHTML

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

How do you make CSS layouts?

CSS layouts can be created in an external CSS file. The extension of the file should be CSS only.


How do you override css?

If you are using an External style sheet, CSS can be changed by embedding CSS code into the HEAD tag after the link to the external CSS file.Embedded CSS must be contained within a STYLE tag.EXAMPLE:


What are three aspects that can be controlled by CSS?

CSS can be integrated in three ways: Inline: Style attribute can be used to have CSS applied HTML elements. Embedded: The Head element can have a Style element within which the code can be placed. Linked/ Imported: CSS can be placed in an external file and linked via link element.


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.


Type in css?

Typing in CSS is done inline, page or external. Inline is done right there in the HTML. Page is done in the Head element of the page. external is done by linking to a CSS file that is not included and is linked in the Head element of the document. Peace, carke


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 an embedded style?

Embedded CSS simply means that your CSS is written in an external file (i.e. not in your HTML file). The external file can be anywhere on your server and must end in ".css". You would call this CSS file from inside your HTML file like this:On the otherhand, inline CSS is when your CSS is included inside of your HTML code, for example:foo


What is CSS and how to apply CSS in HTML tag and attributes?

CSS is a rule based language - you define rules specifying groups of styles that should be applied to particular elements or groups of elements on your web page. CSS can be added to HTML documents in 3 ways : Inline - by using the style attribute inside HTML elements. Internal - by using a element in the section. External - by using a element to link to an external CSS file.


Difference between in-line and cascading style sheet?

Internal is normally called embedded CSS. It is place between the style tags which are place between the head tags on an HTML page. Inline CSS uses the style="" attribute and styles the tags directly. It will override any previous CSS styling.


How do you create link css to indexpage?

CSS can be made into a external page and linked to HTML. It can be done by the link tag like &lt;link src="abc.css"&gt;&lt;/link&gt;


Compare two methods of accessing external CSS script?

Let following be HTML page: &lt;HTML&gt; &lt;head&gt; &lt;link href='external_style.css' type='text/css' rel='stylesheet'&gt; &lt;/head&gt; &lt;body&gt; &lt;p&gt;Hello world&lt;/p&gt; &lt;/body&gt; &lt;/HTML&gt; and following be external css script: p {text-decoration:underline} Here is HTML document, in the head section tag &lt;link&gt; is used. Tag link is used to get reference of external style sheet page named "external_style.css" using href property. Both css page and HTML page resides in same directory. the external css page cannot contain any tags like:&lt;HTML&gt; or &lt;style&gt; it can contain only style specification like: p {font-size : 8pt} H1 {text-decoration:underline} etc


C why would you want to use the link tag instead of the style tag to define a style sheet?

&lt;link href="css/style.css" rel="stylesheet" type="text/css" /&gt; The link tag refers to an external stylesheet while the style tag is used if your CSS is inside the HTML document under the &lt;head&gt;.