What is the difference between server-side and client-side image maps?
server-side and client-side. In the server-side method, when you click an image leading to multiple links, you are actually invoking a cgi-bin program. The program typically reads a separate map file that tells the program where to go, depending on what part of the image you are clicking. The program returns the destination to the web browser, which then opens the page. The imagemap is called "server-side" because the web browser must contact the remote host to find which site to contact.
Client-side imagemaps, by contrast, do not require a cgi-bin program to function. The imagemap is actually an HTML construct that can be contained on the same page as the clickable image. Rather than requiring the program on the remote host to determine what site to access, the web browser itself associates regions of the image with the appropriate sites. The browser, rather than the remote host, interprets the imagemap.
What is the font size and font of gourmet traveler?
The font is Didot, and you need to stretch it to make it look like it
With what html code do you make a URL for a website?
If you want to just insert a URL then you just copy and paste the URL where you want it to be. If you want a link you use the following code:
<a href=URL of webpage you want to link to goes here>Your link text</a>
Hypertext documents are documents containing hypertext.
Which software is used for veiwing any HTML docoment as web page?
The "web browser" is a category of applications used to view an HTML document as a rendered webpage.
Popular browsers include Google Chrome, Mozilla Firefox, Microsoft's Internet Explorer, and Apple's Safari.
Explain briefly about Cascading Style Sheet?
}
Block 2
p {
color: #00FF00; /* Set to Green*/
}
And in the case that another Block sets the P tag to have a background color of Blue:
Block 3
p {
bacground-color: #0000FF; /* Set to Blue */
}
Then the final Cascade will result in the P tag being:
Final Cascade
p {
bacground-color: #0000FF; /* Set to Blue */
color: #00FF00; /* Set to Green*/
font-family: Arial;
}
HTML is basically used to design?
HTML (Hypertext Markup Language) is a programming language used to define how a web page is formatted.
elementFontfont-familyfont-sizefont-stylefont-variantfont-weightletter-spacingline-heighttext-decorationtext-aligntext-indenttext-transformwhite-spaceword-spacingcolorBackgroundbg-attachmentbg-colorbg-imagebg-positionbg-repeatBoxwidthheightborder-topborder-rightborder-bottomborder-leftmarginpaddingmax-heightmin-heightmax-widthmin-widthoutline-coloroutline-styleoutline-widthPositioningpositiontopbottomrightleftfloatdisplayclearz-indexListlist-style-imagelist-style-typelist-style-positionTablevertical-alignborder-collapseborder-spacingcaption-sideempty-cellstable-layoutEffectstext-shadow-webkit-box-shadowborder-radiusOtheroverflowcursorvisibilityWhat shortcut decreases font size?
If you work with Word Microsoft:
- click Home, Font: now is your choice for the type of font, size, color etc.
For Internet Explorer:
- Click View, Zoom and Up or Out
For Windows:
- Click Control Panel, Personalization, Display, Make text and other items larger or smaller and after this choose the size of fonts.
Why are there different versions of HTML?
it think the versions are
HTML 1.0
HTML 2.0
HTML 3.0
HTML 3.2
HTML 4.01
xhtml 1.0
and now HTML 5
The different versions are used to characterize changes in the HTML itself. With new features and new tags come new versions. In the modern web, (HTML 4+) the versions are also the basis for laying out standards that describe the function of the HTML and how the browsers are supposed to display it.
For instance, prior to HTML 2.0, there were no images available in HTML.
If you're interested, the W3C (World Wide Web Consortium) is in charge of keeping the current HTML and XHTML standards. You can find the specific changes in versions on their website.
How do you align center the text in a column?
Use the CSS "text-align" property.
Assuming that your column is built using a block level element with a set width (either fixed or fluid) your HTML will look something like this:
text in the column
Your CSS will look something like this:
div { width: 200px; text-align: center; }
What does the four letter acronym HTML stand for?
HTML is a subset of SGML (Standard General Markup Language) with more forgiving rules that are not followed for XHTML and XML (also subsets.)
A tag is said to be a paired tag if the text is placed between a tag and its companion tag. In paired tags, the first tag is referred to as Opening Tag and the second tag is referred to as Closing Tag.
ExampleThis text is in italics. Note: Here is called opening tag. and is called closing tag.A div tag in HTML represents a division, usually with its own style, class, or alignment.
For example, the HTML <div align=center>Text</center> would align the text in the center of the page
It created an ordered list.
<OL>
<LI>Pie
<LI>Carrot
<LI>Banana
</OL>
Will make something like this.
1. Pie
2. Carrot
3. Banana
The numbers are made automatically by whichever browser you're using.
How do you make a character move in HTML?
You cant in HTML. Try Javascript (however it is better if you use a picture editor like Macromedia Fireworks and save the image as .jpg),
You can. You would have to program it though. I have some of the "text moving features" added to my personal HTML. You could do the same.
The answer is: it depends.
It depends on the specific units used. In most Word Processing fonts are measured in units called "points." A point is a very old measurement that involves a very old typsetting tool. It has varied over time. But in the 1990s, a technology called PostScript set the new standard: there are 72 points in an inch. That means that a single point is 1/72nd of an inch, or ~0.353 millimeters.
In the world of computing, this still varies some, as inches in print don't really translate well onto screen real estate.
To set a font to 72 points using CSS you use the following rule
.selector { font-size:72pt;}
The other very common unit is pixels. A pixel is a tiny square that lights up on your computer screen. When you put these tiny dots together, they form a picture (your eye does the blending.) 72 pixels is about 4 times the size of the font your question is in at the top of the page. (That's 20px.) The symbol for pixels is px, so the above rule would be
.selector {font-size:72px;}
Pixels are a digital measurement. Points are a print measurement. There's very little continuity between the two.
Other measurements are relative. For instance "em" is the size of one "m" (horizontally) in the font you're currently using. If you're using a bigger font, then 1em is bigger. "ex" is the size of one "x." You can also use percentages "%" 50% is half the size of the current size. 150% is one and a half times the size.
The other one is the pica, which is a print unit, that is 12 points.
So, like I said at the beginning: it depends. :)
What CSS property specifies the background color of a table?
Use the CSS declaration "background-color"
For instance...
<style type="text/css">
body { background-color: red; }
</style>
That code will change the background color to red. Background color will take the same values for a color as all other CSS color. A named color keyword, a hex RGB value, a decimal RGB value, and a decimal RGBA value.
On your computer, highlight the website in the little bar it's in. Press and hold Ctrl and press C and let go of each. Now it's copied. To paste go to the place you want to put the link and put your cursur there and then press and hold Ctrl and then press V and let go. Now you can click on it!
How do you link one HTML page to another using button?
<body>
<a href="insert the link here">insert the text to appear on page here</a>
<body>
for example
<a href="www.google.com">click here to go to google</a>
</body>
What are the various ways to embedded PHP in HTML coding?
there are in fact two basic methods - one is called minimal PHP, and the second tends to be referred to as the CGI-way.
minimal php means that you're making php secions in HTML only where really necessary (using the php section begin (<?php ) and end (?> ) tags.).
the CGI-way, or maximum PHP means, that you're in fact embedding HTML into strings in php, and the whole page is echo()ed.
the second way tends to be viewed as an abuse of php by some people, as php was meant to be "templating" language, and designed to be used mainly the first way.
Inheritance is an object oriented feature supported by Java wherein the features of one Java class can be inherited/made available in another class. This creates a parent child relationship between these 2 classes. Class Inheritance in java mechanism is used to build new classes from existing classes. The inheritance relationship is transitive: if class x extends class y, then a class z, which extends class x, will also inherit from class y. Object-oriented programming allows classes to inherit commonly used state and behavior from other classes.
Example:
public class Parent {
private String name = "Rocky";
public String getName(){
return this.name;
}
}
public class Child extends Parent {
public static void main(String[] args){
System.out.println("Name in Parent is: " + getName());
}
}
Here the getName() method is available only in the parent class but is directly used in the child class because the method is public and is directly accessible to the child class since it has extended the parent class.
Benefits of Inheritance:
One of the key benefits of inheritance is to minimise the amount of duplicate code in an application by sharing common code amongst several subclasses. Where equivalent code exists in two related classes, the hierarchy can usually be refactored to move the common code up to a mutual superclass. This also tends to result in a better organisation of code and smaller, simpler compilation units.
Inheritance can also make application code more flexible to change because classes that inherit from a common superclass can be used interchangeably. If the return type of a method is superclass
Why should image files on webpages be compressed?
So that the image downloads quicker in your browser. File size is important in web design and every element of your page has a file size which adds to total download time.
What potential problems could we did not have the W3C?
No communication means no business, exchanging infromation or data equal zero.
What is the difference in size between a webpage and a HTML document?
Very simply, a website is a collection of one or more web pages designed to convey information on a particular subject or theme to a web user. (e.g. a company will have a web site providing structured information about the company, designed to inform particular groups of its stakeholders - investors, customers, technical support, sales, employment, news items etc.)
A web page is one screen full of information (from a web site) that may contain links to other pages in the web site or links to external information. The web page will normally be written as (or rendered as) an HTML document.