Which of the following are ways to apply CSS to a wep page and/or element? A. Linked - Using the <link /> tag in the head of a document B. Embedded - Using the <style></style> tag set in the head of a document C. Inline - using the style="property:value;" in an element/tag D. Connect - using the <style /> tag in the head of a document sorry to ask another but i missed a lecture in class and i'm a noob with CSS. thanks!
I don't quite understand your question but I think your mean how do you link an external style sheet to a web page....am I correct? If I am, put this code in the <head>...<.head> part of your webpage (rename the CSS obviously and change the media type if required) I hope this has helped if this is not what your after I hope I havent confused you. abc1234
abc1234 actually hit on the best way to do it Only thing I would change is the value of the media attribute from "all" to "screen".
as abc said if you want an external stylesheet, but if you want the css applied to that page only, use B