56 solutions available
Question 1Harsh is working on a client's project which requires him to add a picture on the top left part of the web page. While adding the picture,...
Question 2Ruby has written the following code to shift a background image to the bottom-right corner of the page. The code however is not giving the...
Question 3Namrata has written some style rules using the embedded style sheet method, but the effects are not getting applied on the elements....
Question 4Diya wants to display all the text on her web page in blue colour with font size 3. Suggest Diya, which selector she should use to achieve...
Question 1A ............... size sets the font size relative to surrounding elements.
Question 2............... helps in creating dynamic web pages that are interactive, animated, and responsive to the user's actions.
Question 3Dynamic web pages can be created by using ..............., ............... or ............... .
Question 4The application of DHTML was introduced by Microsoft with the release of Internet Explorer 4 in year ............... .
Question 5................ is a set of style sheet design principles that determines the visual layout of the content of a web page.
Question 6The ................ defines the logical structure of a webpage.
Question 7Cascading Style Sheets is a collection of rules called ................ that affect the visual appearance of a web page.
Question 8CSS allows the web designers to specify the web page formatting options through a ................ while keeping HTML markup considerably...
Question 9CSS can store web applications locally with the help of an ................ .
Question 10You cannot define ................ and ................ in CSS.
Question 11A CSS comprises of ................ that are interpreted by the browser and then applied to the corresponding elements in your document.
Question 12In CSS, properties can be applied to individual elements using an ................ .
Question 13The file which contains the style code is saved with the extension ................ .
Question 14The ................ property sets the text font in two variants: normal or small-caps.
Question 15The ................ property is used to transform the appearance of text into different cases, like uppercase, lowercase, or to...
Question 1Which of the following web pages are loaded on the client's browser exactly in the same way as they are stored on the web...
Question 2Which of the following programming language is used to create dynamic web pages?CVisual BasicASPNone of these
Question 3The full form of DHTML is ............... .Dynamic Hypertext Markup LanguageDefinite Hypertext Markup LanguageDesigning Hypertext Markup...
Question 4The full form of CSS is ............... .Cascading Spread SheetControl Spread SheetCascading Style SheetNone of these
Question 5A ............... is the name of the HTML element to which a style is applied.TagElementSelectorNone of these
Question 6Name the selector that works like a wild card character and is used to match and apply a style to all the elements on a web page.Wild...
Question 7Which one of the following is a correct statement?h1 {font-weight:bold; font-family:Arial;color:red}h1 {font weight; bold; fontfamily:...
Question 8Which tag is used to create an embedded or internal style sheet?Color><Style<Type><PRE>
Question 9Which of the following characters are used to add comments in CSS?#<!--//None of these
Question 10Which property is generally applied to blocks of text (h1, p,th,td,etc.) and is used to align the text of a document.Text-align:...
Question 11Which property helps you to set the border style of an HTML element?Styleborder-colorborder-widthNone of these
Question 12Which one of the following is not a DHTML component?HTMLCascading Style Sheets (CSS)C++None of these
Question 13Which one of the following is the default value of border style?12noneNone of these
Question 14Select the correct statement from the options given below.Body background-color:#F5A9A9; color; BlackBody[background-color:#F5A9A9; color:...
Question 15Which property is used to set the size of a font?Font-sizeFont-styleFontNone of these
Question 1You may need to specify the path of .css file if the file does not exist in the same folder as that of your .html file.
Question 2Href points to the external style sheet file's URL.
Question 3Generic-family is group of family names that have uniform appearances.
Question 4Font-weight property specifies the height or width of the font.
Question 5The unit em makes the font absolute.
Question 6The text-indent property controls the appearance of text on a web page.
Question 7The color property is used to set the colour of the text.
Question 8Line-height property is used to specify the space between characters.
Question 9You can assign negative values to the Line-height property.
Question 10Line spacing property is used to give additional space between text.
Question 11The background property in CSS allows you to control the background of any element.
Question 12The Margin property is used to define the distance from each side to the sides of the neighbouring elements of the document.
Question 1What are the different components of DHTML?
Question 2Differentiate between Static and Dynamic web pages.
Question 3How can we set the margins for an element?
Question 4What does Cascading imply in CSS? Support your answer with an example.
Question 5Differentiate between External style sheets and Internal style sheets.
Question 6Scripting makes the web page dynamic. Explain.
Question 7Differentiate between the Font-weight and Font-variant properties.
Question 8Explain the purpose of using the shorthand Margin property.
Question 9How will you add padding space to all the four sides of an element?
Question 10Identify the errors in the codes below and write the correct code:import url (style_imp.css)<STYLE> p{color:808080}...