answersLogoWhite

0


Best Answer

The short answer is to code it into your website: <link rel="stylesheet" type="text/css" href="style.css"/> where style.css is the style sheet.

User Avatar

Wiki User

16y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you link to a stylesheet?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the correct xhtml for referring to an external style sheet?

&lt;link href="basic.css" type="text/css" rel="stylesheet" media="screen"/&gt; &lt;link href="print.css" type="text/css" rel="stylesheet" media="print"/&gt;


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;.


How do you attach a css file?

Attaching a CSS file is done in the &lt;head&gt; of your HTML document with a &lt;link /&gt; tag. Here's the formatting: &lt;link type="text/css" rel="stylesheet" href="YOURFILE.css" /&gt;


How do you change the CSS for printing?

Add this: &lt;link rel="stylesheet" href="normalview.css" type="text/css" media="screen" /&gt; &lt;link rel="styleshet" href="printview.css" type="text/css" media="print" /&gt;


How are style sheets implemented into webpages?

You can use the link tag to specify the style sheet you want to link into your web page. You put it into the head area. To link a file called YourStyle.css into your page, then you would do it like this: &lt;link rel="stylesheet" type="text/css" href="YourStyle.css"&gt;


How do you attach the stylesheet with the servlet?

You cannot attach a stylesheet with a servlet. Stylesheets are related to HTML and User Interface layer and hence can be attached to JSP pages.


What is the correct place to refer to an external style sheet in an HTML document?

In this example, I'm using a filename titled style.css located in the CSS folder: &lt;link href="css/style.css" rel="stylesheet" type="text/css" /&gt; Insert this line inside your &lt;head&gt; tag. It then refers to an external stylesheet.


What is the full form of XSL?

Extensible StyleSheet Language


What is the yaymovies password for the Last Airbender?

try stylesheet. it work for me


How do you access css Im not sure if its in HTML im not sure how to access either of these?

You need to have the files in the same folder. Add this to HTML: &lt;link rel="stylesheet" type="text/css" href=".css"&gt;


What line of code links any of the pages to the Cascading style sheet?

Put this in the &lt;head&gt; tags: &lt;link rel="stylesheet" href="css/css.css"&gt; /\ l Change this bit depending on where the css file is.


How do you remove an underscore from a menu item in webpage construction?

If you refer to a link then this is a snippet from a stylesheet: a:visited { color: #e3e; background-color: transparent; text-decoration: none; } and the key is the final line with the word none.