answersLogoWhite

0

CSS styles go in the HEAD section of the document, whether they are inline style-sheets, or embedded via LINK elements. (@imports are inline, technically.)

That said, sometimes CSS can go in the actual BODY, when attached to an element via the STYLE attribute.

User Avatar

Wiki User

13y ago

What else can I help you with?

Continue Learning about Engineering

What is Class in HTML?

Class refers to your style sheet (Cascading Style Sheets), or the style part of your HTML document. For example, if your document was this... <style> .text { font-family: Arial } </style> then in your body tag... <div CLASS="text">Hello</div> Hello will be in Arial text font type. It refers to your style, whether it be a font type, colour, background, etc.


Are Cascading style sheets the files inserted into an HTML document that control the appearance of the web pages including layout colors and fonts?

CSS files, which stands for Cascading Style Sheets. CSS can be set up as a separate file which can be referenced by a webpage or you can have CSS directly in a HTML document. HTML itself can also be used to control fonts and colours.


What should be the last command in any HTML document?

The last command in any HTML document is a closing HTML tag. Just before it is the closing BODY tag. </BODY> <HTML>


What is the term for the api used to standardize the way that java script applications can refer to HTML and xhtml documents?

The Document Object Model (DOM) is a platform- and language-independent standard object model for representing HTML or XML and related formats. The Document Object Model (DOM) is a programming interface for HTML and XML documents. It provides a structured representation of the document and it defines a way that the structure can be accessed from programs so that they can change the document structure, style and content.


Marks the beginning and end of the body of an HTML document?

document  and

Related Questions

Explain the procedure of linking a style sheet in HTML document?

To link a style sheet into an HTML document, you will use the <link> tag. This tag links, or embeds, the style sheet into the document. This would look like: <link rel="stylesheet" href="style.css" type="text/css" /> This allows you to use the same style sheet and rules on multiple HTML documents.


What are the basic elements of HTML document?

HTML head title /title meta style /style /head body /body /HTML


Why is a documents style important in HTML?

A document's style is important in HTML very much. It makes it differ from other elements in the page.


What is the head tag in HTML document?

The <head> at the beginning of an HTML document comes between <html> and <body>. It is a container that includes information that relates to the entire document. You can include the following tags in the <head> tag: <title> (required in an HTML document), <style>, <base>, <link>, <meta>, <script>, and <noscript>.


Which type of style sheet is placed directly on the HTML tag?

an inline style sheet is directly placed inside of an HTML document using the <style></style> tags, but CSS styles can be placed on almost any HTML tag. To specify an HTML tag in your selector, just write out the tag without a leading qualifier (. for class, # for id) so you would have something like span{ //css rules here }


How do you embed video games on an HTML?

you need to find the games HTML code and copy and paste it into your HTML document.


What is Class in HTML?

Class refers to your style sheet (Cascading Style Sheets), or the style part of your HTML document. For example, if your document was this... <style> .text { font-family: Arial } </style> then in your body tag... <div CLASS="text">Hello</div> Hello will be in Arial text font type. It refers to your style, whether it be a font type, colour, background, etc.


Are Cascading style sheets the files inserted into an HTML document that control the appearance of the web pages including layout colors and fonts?

CSS files, which stands for Cascading Style Sheets. CSS can be set up as a separate file which can be referenced by a webpage or you can have CSS directly in a HTML document. HTML itself can also be used to control fonts and colours.


What are the elements of an HTML document?

The elements of an HTML document are:HEADTITLEBODY


How do you set margins without CSS in HTML?

HTML does not have a built-in way to set margins without CSS. Margins are a property of Cascading Style Sheets (CSS), not of HTML. To set margins in HTML, you need to use CSS either directly in a “style” attribute of an HTML element, or by using an external CSS file linked to your HTML document.


How would someone label an HTML document so they can find it easily in a folder?

An HTML document is a saved picture of a website usually containing receipts to online transactions. When one downloads them, they are usually saved to the desktop and are easy to find. All one has to do is give it a name that describes it so it is easy to find.


Difference between embedded style sheet and linked style sheet?

Actually, there is no difference between an embedded style sheet and a linked style sheet. They are exactly the same thing, just different wording to describe the same process. To embed a style sheet into a document, you use the <link /> tag within the <head> tag of an HTML document. An example is: <link rel="stylesheet" href="style.css" type="text/css" />