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>
What do you mean by the term java Swing? Describe in brief.
State the term URL path?
Graphical User Interface: A Graphical User Interface (abbreviated as GUI) is a part of a program which permits user interaction through graphical components, like menus, buttons, text areas, and so forth. Interaction frequently includes the usage of a
In .NET, write a simple web service in C# to generate uniform random numbers. Use the class System.Random to generate the random numbers. What part of the code is specifically associated with web services? How could you deploy the web service?
Differeniate asynchronous postback and synchronous postback?
Illustrates database connection pooling which is relative to MTS. Answer: This permits MTS to reuse database connections. Pooling of database connections are put to
Swapping: An {operating system} is frequently able to run programs which need more memory than is physically accessible on the host system. In order to do this, the complete memory needed is broken down into smaller pieces that are swapped in whenever
Define the term Image map: This is an image, divided into logical regions, each of which has a hot spot.
Throws clause: It is a clause in a method header pointing that one or additional exceptions will be propagated from this technique. For example: public int find(String s) throws NotFoundExc
Explain the relation between XHTML and CSS.
18,76,764
1942811 Asked
3,689
Active Tutors
1438974
Questions Answered
Start Excelling in your courses, Ask an Expert and get answers for your homework and assignments!!