Including CSS with the HEAD Tag
Describe how to include the CSS within the HEAD Tag?
Expert
If you wish to involve a CSS within the HEAD tag and apply to whole HMTL docuemnt, you may use STYLE tag as <STYLE TYPE="text/css">css_definition</STYLE>. The following code will set the body background to black and paragraph text to yellow:
<html><head><title>CSS Included</title><style type="text/css">BODY {background-color: black}P {color: yellow}</style></head><body><p> Welcome to questions-interviews.com. You should see this text in yellow on black background.</p></body></html>
Define the term createWindow object? Answer: reateWindow() physically makes the Window in memory based upon the earlier registered WND
Write a recursive function intpower(base, exponent) that when invoked returns base^exponent. For example, intpower(3,4) = 3*3*3*3. Assume that the exponent is an integer greater than or equal to 1.
Iteration: The repetition of a set of statements, generally employing a looping control structure, like a while loop, for loop and do loop.
Initializer: A block stated at the outermost level of a class - identical to a method devoid of a header. The initializer blocks are executed, in order, whenever an instance is formed. They are executed prior to the constructor of the defining class,
How to set Session time out in ASP.NET. I tries changing in config file but still facing issue. Please help..
Sub type: It is a type with a parent super type. The sub-type or super-type relationship is more common than the sub-class or super-class relationship. A class which implements an interface is a sub type of interface. An interface which expands the ot
Hardware: It is the physical devices of a computer system, like its micro-chips, keyboard, disk drives, printer, sound card, and so forth. It is termed `hardware' in contrary to programs, which are termed `software'.
Define the term Trusted applet: It is an applet with additional privileges than an ordinary (that is, untrusted) applet.
Garbage collector: It is a daemon thread which recycles objects to which there are no extant references in a program.
Define the term Monitor: It is an object with one or more synchronized techniques.
18,76,764
1953279 Asked
3,689
Active Tutors
1423145
Questions Answered
Start Excelling in your courses, Ask an Expert and get answers for your homework and assignments!!