answersLogoWhite

0


Best Answer

Embedded

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Which type of CSS is coded in the body of the web page as an attribute of an Xhtml tag?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What are codes for page breaks?

A page break in HTML is coded as <br> In XHTML, that tag needs to close, so instead it's <br/>


What property in the XHTML link tag when configuring CSS to display a printed page?

If you mean: When configuring CSS to display a printed page, what property is used in the XHTML link tag?The answer is: the media attribute or media="print"Example:


What is an attribute and value to an HTML tag?

A tag can have an additional setting in it. This is an attribute. The attributes can then be given values. For example the body tag has an attribute to set the background colour of the page. The attribute is bgcolor. What colour you specify is the value, in this case it is red: <body bgcolor="Red">


How does CSS and XHTML work together?

You code the webpage with XHTML and you add a Cascading Style Sheet for the styles, linking to it in the head of the XHTML page. It is also possible to incorporate the style directly into the head of the XHTML webpage.


Why are javascript sometimes hidden in xhtml document by putting them into xhtml comments?

This ensures that the script text does not appear in the page.


What is the difference between XHTML and CSS?

XHTML and CSS are both languages that are used to make web pages. XHTML is very similar to HTML and serves the same purpose. XHTML & HTML are both used to set the structure of the page - to define images, links, text, headlines, etc. CSS (Cascading Style Sheets) is used to define the style of the page - colors, spacing, etc. If you were to think of a web page as a person, XHTML would be the skeleton, and CSS would be the skin, clothing, make-up, etc.


Can we add phone number in meta description?

A meta description is an HTML and XHTML element that describes your page to search engines. While the perceived (and real) importance of meta data has depreciated, the attribute still plays a significant role in SEO rankings.


Discuss the detriment of using deprecated tags on an XHTML page What issues can someone run into if continued use of these tags are used on a web page?

Discuss the detriment of using deprecated tags on an XHTML page. What issues can someone run into with continued use of these tags?


What does body vlink do in HTML?

encloses the main body of the document. The attribute Alink="..." specifies the color of the activated link on the page. Vlink=".."specifies the color of the followed links (clicked on or visited already) in the page. other body attributes include: bgcolor="..." the background color of the page.or Text="..." specifies the color of the text in the page.


Will HTML will be replaced by XHTML?

That is what seems to be happening already. XHTML is being used more than normal HTML for modern websites, since it forces better cross-browser compatibility -- meaning that multiple browsers viewing the same page should see the same thing. HTML may never fully take over XHTML; however, at this rate, XHTML will be the markup language most commonly used for webpages.


What is the correct HTML for inserting a background color?

It is done with the bgcolor attribute. For example, to set a blue background for the whole web page, you would use it in the BODY tag, like this: <body bgcolor="blue">


What is xhtml transitional doctype?

The XHTML Transitional Document Type is one of the three XHTML DocTypes.XHTML Transitional DocTypeXHTML Strict DocTypeXHTML Frameset DocTypeHTML also has three Document Types: Transitional, Strict, and Frameset.The Document Types were created to set guidelines for correct XHTML markup coding. These are "Rules" that you can follow to validate your page, to make sure you are righting "Correct" XHTML.Any page can be assigned to a Document Type by typing in a !DocType tag in the very first line of an HMTL / XHTML document, like this one:This !DocType is for XHTML Transitional.Although it is assigned to the Document Type, that does not mean it complies with it's rules.To see if it complies with the rules, send a link to the document (URL's only, no local files) at the official validation website. [ http://validator.w3.org/ ]