O Level Web Design Paper January 2021
__ टैग का उपयोग पैराग्राफ की शुरुआत को चिह्नित करने के लिए किया जाता है।
__ tags is used to mark a beginning of paragraph.
tags are used to mark the beginning (and end) of a paragraph in HTML.
Example:
This tag is used to enclose and define paragraphs in HTML documents. It automatically creates space before and after the paragraph, helping to structure content in a readable way.
Correct Answer:
C) <P> सबसे बड़े शीर्षक के लिए सही HTML टैग है: Correct HTML tag for the largest heading is: HTML में छह स्तर के शीर्षक होते हैं, जिसमें Correct Answer:
D) <h1> निम्नलिखित में से कौन सा एक कंटेनर है? Which of the following is a container?
A container is typically an element that holds or wraps other elements. Some common HTML containers are: Correct Answer:
D) Both (A) and (B) वह विशेषता, जो वर्तमान दस्तावेज़ और HREF'ed URL के बीच संबंध को परिभाषित करती है: The attribute, which define the relation-ship between current document and HREF’ed URL is :
In HTML, the In this example, the Here’s what the other options mean: So, the Correct Answer:
A) REL <DT> को हमारे वेब पेज की एक पंक्ति में फिट करने के लिए डिज़ाइन किया गया है लेकिन <DD> इसे स्वीकार करेगा: <DT> is designed to fit a single line of our web page but <DD> will accept a :
The correct answer is (B) full paragraph. The डिक्शनरी लिस्ट ( Correct Answer:
B) full paragraph कैरेक्टर एन्कोडिंग है: Character encoding is :
कैरेक्टर एन्कोडिंग एक ऐसी प्रणाली है जो अक्षरों (characters) को विशिष्ट कोड या नंबरों की श्रृंखला (जैसे ASCII या UTF-8) में बदलती है ताकि डेटा को सही ढंग से स्टोर और ट्रांसमिट किया जा सके। Correct Answer:
C) a system that consists of a code which pairs each character with a pattern, sequence of natural numbers or electrical pulse in order to transmit the data HTML का फुल फॉर्म क्या है? What is the full form of HTML?
HTML stands for Hypertext Markup Language, which is the standard language used to create and design documents on the World Wide Web. HTML uses tags to structure content on the web, such as headings, paragraphs, links, images, and other elements. HTML का पूर्ण रूप 'HyperText Markup Language' है, जिसका उपयोग वेब पेज बनाने के लिए किया जाता है। Correct Answer:
B) Hyper text markup language आधार यूआरएल स्थापित करने का एक बेहतर तरीका इसका उपयोग करना है: A much better approach to establish the base URL is to use :
In HTML, the In this example, both links will be resolved as: Without the Correct Answer:
A) BASE element नई सूची आइटम बनाने और हाइपरलिंक भी शामिल करने के लिए उपयोग किया जाने वाला टैग है: The tag used to create a new list item and also include a hyperlink is : The tag used to create a new list item and also include a hyperlink is: In this example: The list items contain clickable links, allowing users to navigate to the specified URLs. Correct Answer:
A) <li> ग्राफ़िक का कोई भी भाग जो किसी अन्य हॉट ज़ोन में शामिल नहीं है, उसे इसका हिस्सा माना जाता है: Any part of the graphic that is not included in another hot zone is considered to be part of :
If a region of an image does not fall within any defined hot zone, it is considered part of the "default" region, which typically has a default action. इमेज मैप्स (Image Maps) में, यदि ग्राफिक का कोई हिस्सा किसी विशिष्ट 'हॉट ज़ोन' (Shape) में नहीं आता है, तो वह 'default' क्षेत्र का हिस्सा माना जाता है। Correct Answer:
C) default CSS का मतलब कैस्केडिंग स्टाइल शीट्स है। CSS stands for Cascading Style Sheets.
CSS stands for Cascading Style Sheets, and it is used to control the styling and layout of web pages. With CSS, you can style HTML elements in various ways, such as changing colors, fonts, sizes, and positioning. The term "Cascading" refers to how styles are applied at different levels (e.g., inline, internal, or external styles), and if multiple styles apply to the same element, the "cascading" rules determine which style will take precedence. Correct Answer:
A) True CSS का उपयोग किसी भी प्रकार के XML दस्तावेज़ों के साथ भी किया जा सकता है। CSS can also be used with any kind of XML documents. Yes, CSS (Cascading Style Sheets) can be used to style XML (Extensible Markup Language) documents, although there are some differences in how CSS is applied to XML compared to HTML. Here’s a breakdown: Correct Answer:
A) True CSS नियम सेट में एक चयनकर्ता और एक घोषणा ब्लॉक होता है। A CSS rule set contains a selector and a declaration block. Yes, that's correct! A CSS rule set consists of two main parts: the selector and the declaration block. Here’s a detailed breakdown: The selector targets the HTML elements that you want to style. It can be any valid CSS selector, such as: The declaration block contains one or more declarations that define the style rules for the selected elements. Each declaration is a property-value pair, and each declaration is separated by a semicolon. Correct Answer:
A) True सीएसएस एलिमेंट चयनकर्ता सीएसएस में चयनकर्ताओं के प्रकार हैं। CSS Element Selector is types of selectors in CSS. Yes, the element selector is one of the fundamental types of selectors in CSS. It allows you to target HTML elements by their tag name and apply styles to all instances of that element in the document. An element selector targets all elements of a specific type or tag in an HTML document. It is the most basic form of CSS selector and is used to style all occurrences of a particular HTML element. In this example: Correct Answer:
A) True यूनिवर्सल चयनकर्ता का उपयोग कभी भी वाइल्डकार्ड वर्ण के रूप में नहीं किया जाता है। The universal selector is never used as a wildcard character. The universal selector ( For example: This rule applies the So, the statement "The universal selector is never used as a wildcard character" is false. The universal selector is, in fact, a wildcard in CSS. Correct Answer:
B) False Grouping selector का उपयोग विभिन्न शैली परिभाषाओं वाले सभी तत्वों का चयन करने के लिए किया जाता है। The grouping selector is used to select all the elements with the different style definitions. The grouping selector is used to apply the same style to multiple elements, not different styles. You group selectors together by separating them with commas to apply a single set of style definitions to all of them. For example: Here, Correct Answer:
B) False Id selector किसी विशिष्ट तत्व का चयन करने के लिए HTML तत्व की आईडी विशेषता का चयन करता है। Id selector selects the id attribute of an HTML element to select a specific element. Correct Answer:
A) True इनलाइन सीएसएस का उपयोग कई लाइनों या तत्वों पर सीएसएस लागू करने के लिए किया जाता है। Inline CSS is used to apply CSS on multiple lines or elements. Inline CSS refers to applying CSS styles directly within an HTML element using the Correct Answer:
B) False आंतरिक स्टाइल शीट का उपयोग एक से अधिक दस्तावेज़ के लिए कई शैलियों को जोड़ने के लिए किया जाता है। The internal style sheet is used to add multiple styles for more than one document. The statement: "The internal style sheet is used to add multiple styles for more than one document." is False. An internal style sheet is used to define CSS rules within a single HTML document, not for multiple documents. It is placed inside the Correct Answer:
B) False बाहरी स्टाइल शीट केवल एक फ़ाइल को बदलकर पूरी वेब साइट का स्वरूप बदलने की सुविधा प्रदान करती है। The external style sheet facilitates one to change the look of the entire web site by changing just one file. The statement: "The external style sheet facilitates one to change the look of the entire website by changing just one file." is True. An external style sheet is a separate Create an External CSS File: You create a Example ( Link the CSS File to HTML Documents: Each HTML document on your website links to the external Example ( Change the Look of the Entire Website: By changing the Example of changing background color in This change will instantly apply to all HTML files that include the Correct Answer:
A) True टैग का उपयोग एक नया पैराग्राफ शुरू करने के लिए किया जाता है। केवल लाइन ब्रेक देता है, और / टेबल के लिए होते हैं।
सबसे बड़ा और सबसे छोटा होता है।
: A container used for grouping content into sections.: A container used for grouping content that can stand alone, like blog posts or news articles.: A container used specifically for navigation links. and : Containers used for grouping header or footer content.) और बंद करने () दोनों की आवश्यकता होती है। और दोनों कंटेनर हैं, जबकि एक एम्प्टी (Empty) टैग है।
rel attribute is used to define the relationship between the current document and the linked URL (the one specified in the href attribute). It is often used in anchor () tags, as well as in and tags.Example:
rel="noopener" attribute specifies that the relationship between the current page and the linked page is to open in a new window without passing any information about the current page.
URL: There is no URL attribute in HTML for defining the relationship between documents.REV: This attribute was used historically to define the reverse relationship (the inverse of rel), but it is deprecated and rarely used today.All of these: Since only rel is the correct attribute for this purpose, "All of these" is incorrect.rel attribute is the one that defines the relationship between the current document and the URL being referenced.REL (Relationship) एट्रिब्यूट यह बताता है कि वर्तमान डॉक्यूमेंट और लिंक किए गए URL के बीच क्या संबंध है (जैसे: rel="stylesheet")।
tag is designed to fit a single line of text, while the tag can accept a full paragraph.) में, (Definition Term) एक शब्द के लिए होता है और (Definition Description) उस शब्द की विस्तृत व्याख्या या पैराग्राफ के लिए होता है।
element is used to specify a base URL for all relative URLs in a document. When you set a tag, all relative links (e.g., images, stylesheets, links) will be resolved relative to the specified base URL. This is particularly useful when you want to avoid hardcoding URLs in multiple places.Example of using the
element:
https://www.examjila.com/online-test.htmlhttps://www.example.com/old-paper.html element, the links would be resolved relative to the current page’s location. टैग का उपयोग डॉक्यूमेंट के सभी रिलेटिव URL के लिए एक 'आधार' URL सेट करने के लिए किया जाता है।
(for the list item) combined with (for the hyperlink).Example:
tag is used to create an unordered list. tag is used to create a list item. tag is used to create a hyperlink within the list item.
Basic Concept:
1. Selector:
p, div, h1),.class-name),#id-name),[type="text"]),:hover, :first-child),::after, ::before).
2. Declaration Block:
What is an Element Selector?
Syntax:
element: The HTML element you want to style (e.g., p, h1, div, a).property: The CSS property you want to apply (e.g., color, font-size, margin).value: The value for the property (e.g., red, 16px, 20px).Example:
p selects all <p> (paragraph) elements in the document.{ color: blue; font-size: 18px; } defines the styles applied to those elements, making the text color blue and the font size 18px.How It Works:
<p> elements in the HTML document will inherit the specified styles.
*) in CSS is used as a wildcard character. It targets all elements in the HTML document, applying the specified styles universally to every element on the page.margin: 0 and padding: 0 styles to every element on the page, making the universal selector function as a wildcard that selects everything.
h1, h2, and p elements will all have the same styles (blue color and 16px font size), not different ones.So, the correct interpretation is:
id attribute value.#) followed by the id value.
style attribute. It applies styles to individual elements, not multiple elements. You can only apply inline styles to a single element at a time, and it is typically done on a single line (although you can technically write multiline code in the style attribute).
<style> tag, usually within the <head> section of an HTML page.
Explanation:
.css file that contains all the CSS rules for styling a website. This .css file is linked to multiple HTML documents across the website. By using an external style sheet, you can manage and update the styling of the entire website by modifying just one file (the CSS file), rather than updating individual styles in each HTML document.How it Works:
.css file (e.g., styles.css) and write your CSS rules in that file.styles.css):.css file using the <link> tag within the <head> section.index.html):styles.css file, you can affect the styling of all HTML pages linked to it. For example, if you update the background color or font in the styles.css file, the change will automatically apply to all the HTML pages that reference this external stylesheet.styles.css:styles.css file, making it very easy to maintain a consistent design across a website.Key Benefits of External Style Sheets:
Related Papers
Latest Updates