Please select a subject first
Advertisements
Advertisements
What is the use of <style> tag?
Concept: undefined >> undefined
What is CSS?
Concept: undefined >> undefined
Advertisements
Write the general format of linking CSS with HTML.
Concept: undefined >> undefined
What is Inline Style?
Concept: undefined >> undefined
Write down general format of CSS declaration.
Concept: undefined >> undefined
What are the advantages of using CSS? Advantages of CSS
Concept: undefined >> undefined
Write a short note on rule of CSS.
Concept: undefined >> undefined
Write a CSS file to define text color and alignment to <p> tag.
Concept: undefined >> undefined
Write a CSS file to define font type, style and size to <h1> tag.
Concept: undefined >> undefined
Write an HTML document to display the following paragraph as per the given description Using CSS:
- Font Name: Cooper Black
- Style: Bold Italics
- Color: Blue
“The State Institute of Education (SIE) was established in 1965 to provide for systematic study of problems relating to School Education under the administration of Directorate of School Education.”
Concept: undefined >> undefined
List and explain the Font and text element properties and values used CSS.
Concept: undefined >> undefined
Which provided a common scripting language to web developers to design, test and deploy Internet Application
Concept: undefined >> undefined
Which conditional statement is used to transfer control from current statement to another statement?
Concept: undefined >> undefined
_______ statement can be used as alterative to if-else statement.
Concept: undefined >> undefined
Which statement in switch case is used to exit the statement once the appropriate choice is found?
Concept: undefined >> undefined
Which of the following is not a branching statement?
Concept: undefined >> undefined
What will be the output for the following snippet:
For (var n=0; n<10; n++)
{
if (n==3)
{
break;
}
document write (n+”<br>”);
}Concept: undefined >> undefined
In which loop the condition is evaluated, before executing a statement?
Concept: undefined >> undefined
The _______ statement is especially useful when testing all the possible results of an expression.
Concept: undefined >> undefined
