answersLogoWhite

0

You use the LINK tag.

You use the LINK tag.

You use the LINK tag.

You use the LINK tag.

You use the LINK tag.

You use the LINK tag.

You use the LINK tag.

You use the LINK tag.

You use the LINK tag.

You use the LINK tag.

You use the LINK tag.

User Avatar

Wiki User

12y ago

Still curious? Ask our experts.

Chat with our AI personalities

SteveSteve
Knowledge is a journey, you know? We'll get there.
Chat with Steve
JordanJordan
Looking for a career mentor? I've seen my fair share of shake-ups.
Chat with Jordan
FranFran
I've made my fair share of mistakes, and if I can help you avoid a few, I'd sure like to try.
Chat with Fran
More answers

Just type the code shown below in your HTML page inside tag:

Just replace "style.css" with your existing css filename.

For eg:- if your style sheet's name is mystyle.css then the code will be >>

If your style sheet is located somewhere else then:

For eg:- if your style sheet is inside a folder called "css" then the code will be >>

You have to put the correct path to make it work so wherever is your style sheet is located you will have to give it the correct path

for eg:-

if your style sheet is located in folders such as >> css/default/global/mystyle.css

then the path will be like this >>

or it might be

(The path is Depended on the location of your css file)

User Avatar

Wiki User

13y ago
User Avatar

Go to http://www.pageresource.com/dhtml/csstut5.htm

it helped me, you.

User Avatar

Wiki User

9y ago
User Avatar

You use the LINK tag.

User Avatar

Wiki User

12y ago
User Avatar

Add your answer:

Earn +20 pts
Q: How do you refer to an external style sheet on HTML?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

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 specify global styles for HTML tags?

You need to use style sheets. You can define a style in an external style sheet and link it to the documents you need. A change in the style sheet will affect all documents it is linked to. Here is an example of a simple style sheet: body { background-color: #d0e4fe; } h1 { color: orange; text-align: center; } p { font-family: "Times New Roman"; font-size: 20px; }


What information is stored in external style sheet?

A CSS (Cascading Style Sheet) contains information about page formatting. It can include data related to every HTML element. For example, it can define the font face, size, and color of the <h1> tag.


Compare two methods of accessing external CSS script?

Let following be HTML page: <HTML> <head> <link href='external_style.css' type='text/css' rel='stylesheet'> </head> <body> <p>Hello world</p> </body> </HTML> and following be external css script: p {text-decoration:underline} Here is HTML document, in the head section tag <link> 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:<HTML> or <style> it can contain only style specification like: p {font-size : 8pt} H1 {text-decoration:underline} etc


Is CSS a scripting language?

No, HTML is a mark up language and css ( cascading style sheet) is a way of styling a web page eg, bgcolor, text color size and font ect, you can write the css in the HTML or make it separate and link the HTML to it