answersLogoWhite

0

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.

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

On MagiStream what is a Custom CSS code and how do you use it?

A CSS code allows you to modify your profile visually. There are articles in the MagiStream gamer forums that explain how and where you can use CSS codes.


What code does MySpace use?

you can use html, dhtml, or css !! do not use javascript though!


How can you convert iframe code to CSS code?

Iframe code cannot be directly converted to CSS code, as they serve different purposes; an iframe is an HTML element used to embed another document within a web page, while CSS is used for styling. However, you can use CSS to style an iframe, such as setting its width, height, border, and other properties. You would typically apply CSS rules to the iframe element by selecting it with a class or ID in your stylesheet. For example, you might write CSS like iframe { width: 100%; height: 500px; border: none; } to style it.


Css code ul class?

to modify any HTML tag just type the tag as the css property eg. ul { /*your css here*/ }


What selector should you use when applying a style to multiple elements in CSS?

The easiest thing is to use a class. Add class="foo" to your elements. And add this code to your CSS:.foo {border: solid 1px #000000;//Or something like that.}


How do align center in java script?

You do it using CSS. You can add CSS styles to the style attribute to an element and assign it the "text-align:center" value, or you can use a class that is pre-build in your CSS. Classes, in this case, will simplify your JS code, but make it less self-contained.


Is Source Code the same as CSS Code?

It can be but source code is just the code of a webpage. Whatever format it is.


What is css on MySpace?

CSS is what website designers use to format there page such as the background colour of the page and the text colour and size, you can use it in myspace in the same way, although i am supposing you are using a prebuilt one, just copy and paste the code into your about me section


What are the importants of css in HTML?

CSS provides styling to the code for interactiveness. It makes the webpage look good and classy.


What is the use of in css?

Inline CSS is one of the ways to apply CSS. It is the styling which is done with the individual element.


How does CSS inhance HTML?

CSS handles the presentation portion of displaying an HTML document on the web. That is to say that CSS makes things like color, size, shape, weight, etc. possible in HTML. To say that CSS "enhances" HTML, however, is an over simplification. CSS provides separate and different functionality than HTML does. HTML does not have the abilities inherent in CSS. Instead, the CSS code makes HTML code more palatable for a human user. Most web spiders, for instance, do not employ HTML fully, if at all.


Difference between inline and internal css?

Inline CSS sits within the HTML tag.For example: your text hereWhen using Internal CSS, all the CSS instructions sit in the section between your css here tags.To use Internal CSS you have to tell the page that you want it to use the css whilst Inline CSS is run automatically as the page is read.