Get the most accurate UP Board Solutions for Class 12 Computer Science Chapter 6 एचटीएमएल बेसिक here. Updated for the 2026 27 academic session, these solutions are based on the latest UP Board textbooks for Class 12 Computer Science. Our expert-created answers for Class 12 Computer Science are available for free download in PDF format.
Detailed Chapter 6 एचटीएमएल बेसिक UP Board Solutions for Class 12 Computer Science
For Class 12 students, solving UP Board textbook questions is the most effective way to build a strong conceptual foundation. Our Class 12 Computer Science solutions follow a detailed, step-by-step approach to ensure you understand the logic behind every answer. Practicing these Chapter 6 एचटीएमएल बेसिक solutions will improve your exam performance.
Class 12 Computer Science Chapter 6 एचटीएमएल बेसिक UP Board Solutions PDF
बहुविकल्पीय प्रश्न (1 अंक)
Question 1. वेब पेज निर्माण के लिए किस प्रोग्रामिंग भाषा का उपयोग किया जाता है? [2017]
(a) HTML
(b) HLL
(c) C++
(d) WORDSTAR
Answer: (a) HTML
In simple words: HTML is the standard language used to design and create pages on the internet.
🎯 Exam Tip: Remember that HTML stands for HyperText Markup Language and is the foundational language for creating web pages.
Question 2. HTML को किसने विकसित किया था?
(a) डेनिस रिची
(b) कार्ल सन
(c) विंट कर्फ
(d) टिम बर्नर्स ली
Answer: (d) टिम बर्नर्स ली
In simple words: Tim Berners-Lee invented HTML in 1991 to help scientists share information easily.
🎯 Exam Tip: Always associate Tim Berners-Lee with the invention of both HTML and the World Wide Web (WWW).
Question 3. किसी वेबसाइट का पहला पेज़ क्या कहलाता है?
(a) टॉपिक पेज
(b) होम पेज
(c) अन्य पेज
(d) अन्तिम पेज
Answer: (b) होम पेज
In simple words: The very first page you see when you open any website is called its Home Page.
🎯 Exam Tip: The home page acts as the main index or starting point of a website.
Question 4. किसी वेबसाइट में कितने होम पेज होते हैं? [2015]
(a) 1
(b) 2
(c) 3
(d) 4
Answer: (a) 1
In simple words: Every website has only one main starting page, which is its single home page.
🎯 Exam Tip: No matter how large a website is, it always has exactly one home page.
Question 5. किसी वेब पेज के बैकग्राउंड को कलर देने के लिए किस टैग का प्रयोग होता है?
(a) <BODY>
(b) <HTML>
(c) <HEAD>
(d) <CENTER>
Answer: (a) <BODY>
In simple words: The body tag contains all the visible content of a web page, and we use it to set the background color.
🎯 Exam Tip: Remember that attributes like 'bgcolor' are applied inside the opening <body> tag to change the background color.
Question 6. निम्न में से कौन-सा टैग कमेण्मेट को दर्शाता है?
(a) <Comment>
(b) /Comment/
(c) <!--…-->
(d) <! Comment>
Answer: (c) <!--…-->
In simple words: Comments in HTML are written inside <!-- and --> so that the browser ignores them and doesn't display them on the screen.
🎯 Exam Tip: HTML comments are useful for leaving notes in your code and do not appear on the actual web page.
अति लघु उत्तरीय प्रश्न (1 अंक)
Question 1. HTML डॉक्युमेंट को सेव करने के लिए किस एक्सटेंशन का प्रयोग होता है?
Answer: HTML डॉक्युमेंट को सेव करने के लिए .htm या .html एक्सटेंशन का प्रयोग किया जाता है। यह एक्सटेंशन वेब ब्राउज़र को यह समझने में मदद करता है कि यह एक HTML फ़ाइल है।
In simple words: To save an HTML file, we always use the extension .htm or .html so that our web browser can open and display it properly.
🎯 Exam Tip: Always remember to write the dot (.) before html or htm when writing file extensions in your exam.
Question 2. टैग का कार्य बताइए। [2017]
Answer: टैग का प्रयोग HTML वेब पेज बनाने में किया जाता है। ये टैग्स वेब ब्राउज़र को निर्देश देते हैं कि वेब पेज पर सामग्री को किस प्रकार प्रदर्शित करना है।
In simple words: Tags are special commands in HTML that tell the web browser how to display text, images, and links on a web page.
🎯 Exam Tip: Mention that tags are enclosed in angle brackets like <tagname> to score full marks.
Question 3. <TITLE> टैग को समझाइए।
Answer: किसी डॉक्युमेंट को टाइटल देने के लिए <TITLE> टैग का प्रयोग किया जाता है। इसे <HEAD> तथा </HEAD> टैग्स के अन्दर लिखा जाता है।
उदाहरण:
<HEAD>
<TITLE> WELCOME PAGE </TITLE>
</HEAD>
In simple words: The title tag is used to give a name to your web page, which appears at the very top of the browser window.
🎯 Exam Tip: Remember that the <TITLE> tag is always placed inside the <HEAD> section of an HTML document.
Question 4. <BR> टैग का प्रयोग किसलिए किया जाता है?
Answer: किसी पैराग्राफ या लाइन को ब्रेक करने के लिए <BR> टैग का प्रयोग किया जाता है। यह टेक्स्ट को अगली लाइन पर दर्शाता है। यह एक एम्प्टी टैग है जिसका कोई क्लोजिंग टैग नहीं होता।
In simple words: The <BR> tag is like pressing the 'Enter' key on your keyboard to start writing on a new line.
🎯 Exam Tip: Clearly state that <BR> is an empty (or singular) tag, meaning it does not require a closing </BR> tag.
Question 5. <BASEFONT> टैग में size एट्रिब्यूट का क्या उपयोग होता है? [2012]
Answer: डॉक्युमेंट में किसी टेक्स्ट का साइज बदलने के लिए <BASEFONT> टैग में size को एक नम्बर देकर दर्शाया जाता है।
उदाहरण: <BASEFONT size=2>
In simple words: The size attribute in the basefont tag helps us set the default text size for the entire web page.
🎯 Exam Tip: Write the example code clearly to show the examiner how the size attribute is written inside the tag.
लघु उत्तरीय प्रश्न I (2 अंक)
Question 1. HTML क्या है? किसी वेब पेज के निर्माण में यह कैसे सहायक है? [2008]
अथवा
HTML पर संक्षिप्त टिप्पणी लिखिए। [2016, 14, 09]
अथवा
एच टी एम एल को समझाइए। [2017]
Answer: HTML का पूर्ण रूप हाइपरटेक्स्ट मार्कअप लैंग्वेज (Hypertext Markup Language) है। इसे टिम बर्नर्स ली ने सन् 1990 के दशक के प्रारम्भ में स्विट्जरलैंड में वेब पेज को बनाने के लिए विकसित किया था। यह एक इण्डीपेण्डेण्ट लैंग्वेज है। इसमें टैग के प्रयोग द्वारा कोडिंग की जाती है। HTML डॉक्युमेंट को सेव करने के लिए .htm या .html एक्सटेंशन का प्रयोग किया जाता है। यह वेब ब्राउज़र को निर्देश देकर आकर्षक वेब पेज बनाने में मदद करता है।
In simple words: HTML is the standard language used to create web pages. It uses simple tags to design and structure how text and images look on the internet.
🎯 Exam Tip: Always write the full form of HTML and mention the name of its creator, Tim Berners-Lee, to get maximum marks.
Question 2. वेब पेज का अर्थ समझाइए। [2007]
अथवा
वेब पेज का वर्णन कीजिए। [2010]
Answer: ऐसा पेज जिस पर वेब सिस्टम की समस्त जानकारी उपलब्ध हो, उसे वेब पेज कहते हैं। एक वेब पेज पर किसी सर्वर का डाटा स्पष्ट रूप से प्रस्तुत किया जाता है। एक वेब पेज पर टेक्स्ट, चित्र, वीडियो, ग्राफिक्स अथवा हाइपरलिंक होते हैं। वेब पेजों को निम्न श्रेणियों में विभक्त किया जाता है:
• होम पेज
• मेन टॉपिक पेज
• अन्य पेज
In simple words: A web page is a single document on the internet that contains information like text, pictures, and videos that you can see using a web browser.
🎯 Exam Tip: List the three main categories of web pages (Home page, Main topic page, and Other pages) clearly using bullet points.
Question 3. वेबसाइट पर संक्षिप्त टिप्पणी लिखिए। [2008]
अथवा
वेबसाइट को समझाइए। [2018]
Answer: एक वेबसाइट विभिन्न वेब पेजों के संयोजन से बनती है। किसी भी वेबसाइट का पहला पेज होम पेज कहलाता है, जो अन्य पेजों को भी लिंक करता है। वेबसाइट मुख्यतः निम्न प्रकार की होती है:
1. पर्सनल वेबसाइट (Personal Website)
2. कमर्शियल वेबसाइट (Commercial Website)
3. सरकारी वेबसाइट (Government Website)
In simple words: A website is a collection of many connected web pages sharing a single domain name, starting with a main page called the home page.
🎯 Exam Tip: Define a website as a collection of web pages and make sure to mention that the 'Home Page' is the entry point of any website.
Question 4. वेब पेज निर्माण के विभिन्न तरीके लिखिए। [2011]
अथवा
वेब पेज बनाने के पदों को समझाइए। [2012]
Answer: ऐसा डॉक्यूमेंट जिस पर वेब सिस्टम की सम्पूर्ण जानकारी उपलब्ध हो, उसे वेब पेज कहते हैं। वेब पेज को दो तरीकों से बनाया जा सकता है। यह उपयोगकर्ता के लिए इंटरनेट पर जानकारी प्रदर्शित करने का मुख्य माध्यम है।
• स्टैटिक पेज (Static page): किसी पेज के कण्टेण्ट को स्टैटिक रूप से दर्शाने के लिए स्टैटिक पेज का प्रयोग किया जाता है।
• डायनैमिक पेज (Dynamic page): किसी पेज की वैल्यू या कण्टेण्ट को परिवर्तित करने के लिए डायनेमिक पेज का प्रयोग किया जाता है।
In simple words: वेब पेज इंटरनेट पर दिखने वाला एक डिजिटल पेज होता है। इसे दो तरह से बनाया जा सकता है - स्टैटिक (जो हमेशा एक जैसा रहता है) और डायनेमिक (जो यूजर के अनुसार बदलता रहता है)।
🎯 Exam Tip: परीक्षा में स्टैटिक और डायनेमिक वेब पेज के बीच का अंतर स्पष्ट रूप से लिखने पर पूरे अंक मिलते हैं।
Question 5. होम पेज का अर्थ बताइए। [2008]
अथवा
होम पेज को समझाइए। [2018]
Answer: किसी वेबसाइट का पहला पेज होम पेज कहलाता है। यह विभिन्न लिंक को सम्मिलित करता है तथा अन्य पेजों तक जाने की अनुमति देता है। होम पेज यह दर्शाता है कि वेबसाइट किस प्रकार की है, किसी वेबसाइट की जानकारी उसके होम पेज से ही मिलती है। इसमें टेक्स्ट, इमेज, वीडियो, लिंक आदि सम्मिलित होते हैं। यह किसी भी वेबसाइट का मुख्य प्रवेश द्वार होता है।
In simple words: होम पेज किसी भी वेबसाइट को खोलने पर दिखने वाला सबसे पहला मुख्य पेज होता है। यहाँ से आप वेबसाइट के अन्य सभी पेजों पर जा सकते हैं।
🎯 Exam Tip: होम पेज की परिभाषा लिखते समय यह जरूर बताएं कि यह वेबसाइट का मुख्य या पहला पेज होता है।
Question 6. URL का वर्णन कीजिए। [2018]
Answer: URL का पूर्ण रूप यूनिफॉर्म रिसोर्स लोकेटर है। इण्टरनेट पर वेब एड्रेस किसी विशिष्ट वेब पेज की लोकेशन को पहचानता है। वेब एड्रेस को URL कहते हैं। URL इण्टरनेट से जुड़े होस्ट कम्प्यूटर पर फाइलों के इण्टरनेट एड्रेस को दर्शाते हैं; जैसे – http://www.google.com/services/index.htm जहाँ,
• http – प्रोटोकॉल आइडेंटिफायर
• WWW – वर्ल्ड वाइड वेब
• google.com – डोमेन नेम
• /services/ – डायरेक्टरी
• index.htm – वेब पेज
यह इंटरनेट पर किसी भी फाइल या पेज का एक अनोखा पता होता है।
In simple words: URL इंटरनेट पर किसी भी वेबसाइट या पेज का अनोखा पता (address) होता है, जैसे हमारे घर का पता होता है।
🎯 Exam Tip: URL का पूरा नाम (Uniform Resource Locator) लिखना न भूलें और इसके विभिन्न भागों को उदाहरण देकर समझाएं।
Question 7. सर्च इंजन का उदाहरण सहित वर्णन कीजिए। [2018]
Answer: सर्च इंजन इण्टरनेट पर किसी भी विषय के बारे में सम्बन्धित जानकारियों को देने के लिए प्रयोग होता है। यह एक प्रकार की ऐसी वेबसाइट होती है, जिसके सर्च बार में किसी भी टॉपिक को लिखते हैं, इसके बाद उससे सम्बन्धित सभी जानकारियां प्रदर्शित हो जाती हैं। यह इंटरनेट पर मौजूद विशाल डेटाबेस में से सही जानकारी ढूंढने में मदद करता है।
उदाहरण:
• Google – http://www.google.com
• Yahoo – http://www.yahoo.com
• Hotbot – http://www.hotbot.com
• AltaVista – http://www.altavista.com
In simple words: सर्च इंजन एक ऐसी वेबसाइट है जहाँ हम कुछ भी लिखकर सर्च करते हैं और वह हमें इंटरनेट से ढूंढकर सही जानकारी दिखाता है, जैसे गूगल।
🎯 Exam Tip: सर्च इंजन की परिभाषा के साथ कम से कम दो प्रसिद्ध उदाहरण जैसे Google और Yahoo जरूर लिखें।
Question 8. वेब ब्राउजर का वर्णन कीजिए। [2017]
Answer: वेब ब्राउजर एक सॉफ्टवेयर एप्लीकेशन है, जिसका प्रयोग वर्ल्ड वाइड वेब के कण्टेण्ट को ढूंढने, निकालने व प्रदर्शित करने में होता है। ये प्रायः दो प्रकार के होते हैं। इसके बिना हम इंटरनेट पर किसी भी वेबसाइट को नहीं खोल सकते हैं।
In simple words: वेब ब्राउज़र एक ऐसा ऐप या सॉफ्टवेयर है जिसकी मदद से हम इंटरनेट पर वेबसाइट्स खोलते हैं और उन्हें देखते हैं, जैसे क्रोम या फ़ायरफ़ॉक्स।
🎯 Exam Tip: वेब ब्राउज़र के कार्य और इसके प्रकारों का उल्लेख करने से उत्तर अधिक प्रभावशाली बनता है।
वेब ब्राउज़र के प्रकार
- टेक्स्ट वेब ब्राउजर: इसमें टेक्स्ट आधारित सूचना को प्रदर्शित किया जाता है; जैसे – Lynx
- ग्राफिकल वेब ब्राउजर: यह टेक्स्ट तथा ग्राफिक सूचना दोनों का सपोर्ट करता है; जैसे – Mozilla firefox, Google chrome आदि।
लघु उत्तरीय प्रश्न II (3 अंक)
Question 1. HTML के वेब पेज या वेबसाइट की संरचना उदाहरण सहित बताइए।
Answer:
<HTML>
<HEAD>
<TITLE> <!...This section is used for the title...> </TITLE>
</HEAD>
<BODY> <!...This section is used for all that you want to show on the page...> </BODY>
</HTML>
उदाहरण:
<HTML>
<HEAD>
<TITLE> Webpage </TITLE>
</HEAD>
<BODY> This is my home page. </BODY>
</HTML>
यह संरचना प्रत्येक मानक HTML दस्तावेज का आधार बनती है और ब्राउज़र को पेज प्रदर्शित करने में मदद करती है।
In simple words: HTML documents have a basic structure with a head (for title) and a body (for main content). This structure tells the browser how to display the webpage.
🎯 Exam Tip: Always remember to close every tag you open, like closing <HTML> with </HTML> at the very end of your code to avoid rendering errors.
Question 2. HTML में वेब पेज बनाने हेतु प्रयोग किए जाने वाले विभिन्न टैग्स का वर्णन कीजिए। [2009] अथवा HTML टैग की संक्षेप में व्याख्या कीजिए। [2016]
Answer: HTML में वेब पेज बनाने के लिए विभिन्न टैग्स का प्रयोग किया जाता है, इनमें से कुछ मुख्य टैग्स इस प्रकार हैं:
1. <P> टैग पैराग्राफ बनाने के लिए प्रयोग किया जाता है।
2. <FONT> टैग फॉण्ट में स्टाइल, साइज देने के लिए प्रयोग किया जाता है।
3. <CENTER> टैग का प्रयोग किसी टेक्स्ट को सेन्टर में दर्शाने के लिए किया जाता है।
4. <B><U> तथा <I> टैग्स फॉण्ट को बोल्ड, अण्डरलाइन तथा इटैलिक करने के लिए प्रयोग किए जाते हैं।
5. <H1>…….<H6> टैग्स हेडिंग बनाने के लिए प्रयोग किए जाते हैं।
6. <HR> टैग का प्रयोग डॉक्यूमेंट में हॉरिजॉन्टल लाइन क्रिएट करने के लिए किया जाता है।
7. <BR> टैग का प्रयोग पैराग्राफ या लाइन को ब्रेक करने के लिए किया जाता है।
इन टैग्स की मदद से हम वेब पेज को आकर्षक और सुव्यवस्थित बना सकते हैं।
In simple words: HTML tags are like building blocks used to design a webpage. They help us add paragraphs, change fonts, center text, make text bold, and add headings or lines.
🎯 Exam Tip: Memorize the functions of basic tags like <BR> and <HR> as they are frequently asked in short-answer questions.
Question 3. निम्न वेब पेज का कोड लिखिए।
Answer: दिए गए वेब पेज को प्रदर्शित करने के लिए HTML कोड निम्नलिखित है:
<HTML>
<HEAD>
<TITLE> Web Page </TITLE>
</HEAD>
<BODY>
<CENTER><H1>!!WELCOME!!</H1></CENTER>
<P>A web page or webpage is a document commonly written in HyperText Markup Language (HTML) that is accessible through the Internet or other network using an Internet browser.</P>
</BODY>
</HTML>
यह कोड दी गई इमेज के अनुसार वेब पेज को ब्राउज़र में सटीक रूप से प्रदर्शित करेगा।
In simple words: To create the webpage shown in the image, we use the <CENTER> and <H1> tags for the bold welcome heading, and the <P> tag for the paragraph text.
🎯 Exam Tip: When writing code for a visual webpage, pay close attention to text alignment (like centering) and font weight (boldness) to choose the correct tags.
HTML Code Example:
<HTML>
<HEAD>
<TITLE>Web Page</TITLE>
</HEAD>
<BODY> <FONT size="4" face="Calibri"> <H2 align="center">!! WELCOME!!</H2> </FONT><B>
<HR>
<CENTER>
A web page or webpage is a document commonly written <BR> in HyperText Markup Language
</CENTER>
</BODY>
</HTML>
दीर्घ उत्तरीय प्रश्न (5 अंक)
Question 1. HTML क्या है? विभिन्न HTML टैग्स के बारे में संक्षेप में बताइए। (2007)
Answer: HTML का पूर्ण रूप हाइपरटेक्स्ट मार्कअप लैंग्वेज है। HTML को टिम बर्नर्स ली द्वारा सन् 1990 के दशक के प्रारम्भ में स्विट्जरलैंड में वेब पेज को बनाने के लिए विकसित किया गया था। यह भाषा इंटरनेट पर सूचनाओं को प्रदर्शित करने का सबसे सरल और प्रभावी माध्यम है। यह एक प्लेटफॉर्म इण्डीपेण्डेण्ट लैंग्वेज है, जिसका प्रयोग किसी भी प्लेटफॉर्म में किया जा सकता है; जैसे-Windows, Linux, Macintosh इत्यादि।
HTML डॉक्यूमेंट को सेव करने के लिए .htm या .html एक्सटेंशन का प्रयोग किया जाता है। HTML विभिन्न प्रकार के टैग्स को दर्शाता है:
1. <HTML> - यह किसी भी HTML प्रोग्राम का पहला टैग होता है। कोडिंग के प्रारम्भ में <HTML> तथा अन्त में </HTML> का प्रयोग किया जाता है।
2. <HEAD> - यह किसी वेब पेज के हैडर को दर्शाता है, जिसके लिए इसका प्रारूप <HEAD>…. </HEAD> है।
3. <TITLE> - यह वेब पेज के टाइटल को सेट करता है और <HEAD> तथा </HEAD> के बीच लिखा जाता है।
4. <BODY> - किसी वेब पेज के टेक्स्ट अथवा ग्राफिक्स को <BODY> तथा </BODY> भाग के अन्तर्गत दर्शाता है। इस टैग के अन्तर्गत निम्न टैग्स सम्मिलित होते हैं:
• <P>…./P> पैराग्राफ बनाने के लिए।
• <B>…./b> टेक्स्ट बोल्ड करने के लिए।
• <U>….</U> टेक्स्ट को अण्डरलाइन करने के लिए।
• <i>…..</> टेक्स्ट को इटैलिक करने के लिए।
• <BR> अगली लाइन में टेक्स्ट प्रिंट करने के लिए।
• <Hn>… </Hn> हेडिंग बनाने के लिए, जहाँ n = 1 to 6
In simple words: HTML is the language used to design and create web pages on the internet. It uses different tags like HTML, HEAD, TITLE, and BODY to structure text, headings, and paragraphs so they look good on a web browser.
🎯 Exam Tip: Always remember to close tags like <HTML> with </HTML> and write the correct file extension (.html or .htm) to score full marks.
Question 2. एक वेब पेज का निर्माण आप कितने प्रकार से कर सकते है? किसी एक विधि को विस्तार से समझाइए। [2018]
Answer: किसी भी डॉक्यूमेंट जिसमें वेब इन्फॉर्मेशन स्टोर होती है, उसे वेब पेज कहते हैं। वेब पेज को मुख्य रूप से दो प्रकार से बनाया जा सकता है:
• स्टैटिक पेज (Static Page)
• डायनामिक पेज (Dynamic Page)
स्टैटिक पेज (Static Page):
स्टैटिक वेब पेज प्रत्येक बार एक्सेस करने पर एक ही वैल्यू/कण्टेण्ट को दर्शाता है। स्टैटिक वेब पेज को फ्लैट पेज या स्टेशनरी पेज भी कहा जाता है, जो यूज़र को उसी रूप में प्राप्त होता है, जिस प्रकार से यूज़र ने स्टोर किया था। इसके निर्माण के लिए मुख्य रूप से केवल HTML और CSS का उपयोग किया जाता है। यह वेब पेज सभी यूज़र्स को एकसमान सूचनाएँ उपलब्ध कराता है। इसके लाभ निम्नलिखित हैं।
In simple words: A web page is an online document containing information. Static web pages always show the exact same content to every visitor, just like a printed poster on a wall.
🎯 Exam Tip: Clearly define both types of web pages (Static and Dynamic) before explaining one in detail to show a complete understanding of the topic.
Question 3. वेब पेज एवं वेबसाइट से क्या तात्पर्य है? वेबसाइट की संरचना को समझाइए। [2006]
अथवा
वेबसाइट पर एक निबन्ध लिखिए। [2011]
Answer: वेब पेज वह पेज अथवा डॉक्यूमेंट जिस पर ‘वेब’ सिस्टम की सम्पूर्ण जानकारी उपलब्ध हो, उसे वेब पेज कहते हैं। एक वेब पेज पर किसी सर्वर का डाटा स्पष्ट रूप से प्रस्तुत किया जाता है। डाटा सामान्य टेक्स्ट, ग्राफिक्स, ऑडियो आदि के रूप में हो सकता है। एक वेब पेज, डाटा आदि के साथ लिंक भी सम्मिलित करता है। इन लिंक को हाइपरलिंक कहा जाता है। यही हाइपरलिंक यूजर को एक पेज से दूसरे पेज तथा किसी निर्धारित डॉक्यूमेंट पर जाने की सुविधा प्रदान करते हैं।
वेब पेज दो प्रकार के होते हैं - स्टैटिक तथा डायनैमिक। स्टैटिक वेब पेज प्रत्येक बार एक्सेस करने पर एक ही वैल्यू/मैटर को दर्शाता है, जबकि डायनैमिक वेब पेज की वैल्यू/मैटर प्रत्येक बार बदल सकते हैं। वेब पेजों को तीन श्रेणियों में बाँटा जा सकता है:
- होम पेज
- मेन टॉपिक पेज
- अन्य पेज
1. पर्सनल वेबसाइट्स
In simple words: वेब पेज इंटरनेट पर एक सिंगल पेज की तरह होता है जैसे किताब का एक पन्ना, और वेबसाइट कई वेब पेजों का एक समूह होती है जैसे पूरी किताब। हाइपरलिंक की मदद से हम एक पेज से दूसरे पेज पर आसानी से जा सकते हैं।
🎯 Exam Tip: वेब पेज और वेबसाइट के बीच का अंतर स्पष्ट करने के लिए हमेशा उनके प्रकारों (स्टैटिक और डायनैमिक) और श्रेणियों का उल्लेख अवश्य करें ताकि पूरे अंक मिल सकें।
Question 4. वेब पेज में विषय-वस्तु को फॉर्मेट व हाईलाइट करने की प्रक्रिया का उदाहरण सहित वर्णन कीजिए। [2007]
अथवा
वेब पेज में टेक्स्ट फॉर्मेटिंग तथा हाईलाइटिंग का वर्णन कीजिए। [2015, 18, 10]
अथवा
किसी वेब पेज में टेक्स्ट को कैसे हाईलाइट करते हैं?
अथवा
वेब पेज में टेक्स्ट फॉर्मेटिंग पर संक्षिप्त टिप्पणी लिखिए। [2012, 09]
अथवा
वेब पेज में टेक्स्ट को कैसे फॉर्मेट करते हैं? [2012]
Answer: वेब पेज में विषय-वस्तु अर्थात् टेक्स्ट, इमेज आदि को फॉर्मेट व हाईलाइट करने के विभिन्न तरीके हैं। इन टूल्स का सही उपयोग करके हम अपने वेब पेज को अत्यधिक आकर्षक और पठनीय बना सकते हैं। इनका विवरण इस प्रकार है:
1. हेडिंग: किसी वेब पेज पर महत्त्वपूर्ण शब्द को हाईलाइट करने के लिए हेडिंग का प्रयोग किया जाता है। HTML में, <H1> से लेकर <H6> तक हेडिंग दी गई है। यह किसी पेज की हेडिंग को व्यवस्थित करने का कार्य करती है।
2. पैराग्राफ: किसी पैराग्राफ द्वारा डॉक्यूमेंट को स्पष्ट रूप से दर्शाया जाता है। इसके लिए HTML, <P> टैग तथा <DIV> टैग का प्रयोग करता है तथा अगली लाइन से टेक्स्ट लिखने के लिए <BR> टैग का प्रयोग किया जाता है।
3. फॉण्ट साइज: HTML, फॉण्ट के चयन की सुविधा के साथ-साथ उसके साइज की अनुमति भी देता है। इसके लिए <FONT> टैग दिया जाता है। एक अन्य <BASEFONT> टैग फॉण्ट के बेसिक साइज को निर्धारित करता है। इसके लिए यह साइज से पहले + तथा – चिह्न का प्रयोग करता है।
4. बैकग्राउंड कलर: वेब पेज के बैकग्राउंड को कलर करके भी हाईलाइट किया जाता है। इसके लिए इस प्रारूप का प्रयोग करते हैं: <BODY bgcolor="color_name">.......</BODY>
5. टेक्स्ट को हाईलाइट करना: यदि किसी पेज में किसी महत्त्वपूर्ण भाग व पंक्ति को सामान्य से अलग हाईलाइट करना हो, तो उसे तीन प्रकार से हाईलाइट किया जाता है:
- बोल्ड: इसके द्वारा किसी टेक्स्ट को गाढ़ा अर्थात् bold करके टेक्स्ट को हाईलाइट किया जा सकता है। इसके लिए <B> टैग का प्रयोग किया जाता है।
- अण्डरलाइन: इसके द्वारा किसी टेक्स्ट को <U> टैग द्वारा अण्डरलाइन किया जा सकता है।
- इटैलिक: इसके द्वारा किसी टैक्स्ट को <I> टैग द्वारा इटैलिक किया जा सकता है।
In simple words: To format and highlight text on a web page, HTML provides various tags like headings (<H1> to <H6>), paragraphs (<P>, <BR>), font styling (<FONT>), background colors, and text styles like bold (<B>), underline (<U>), and italic (<I>).
🎯 Exam Tip: Always remember to write both opening and closing tags (like <b> and </b>) correctly to ensure the formatting is applied only to the intended text.
Free study material for Computer Science
UP Board Solutions Class 12 Computer Science Chapter 6 एचटीएमएल बेसिक
Students can now access the UP Board Solutions for Chapter 6 एचटीएमएल बेसिक prepared by teachers on our website. These solutions cover all questions in exercise in your Class 12 Computer Science textbook. Each answer is updated based on the current academic session as per the latest UP Board syllabus.
Detailed Explanations for Chapter 6 एचटीएमएल बेसिक
Our expert teachers have provided step-by-step explanations for all the difficult questions in the Class 12 Computer Science chapter. Along with the final answers, we have also explained the concept behind it to help you build stronger understanding of each topic. This will be really helpful for Class 12 students who want to understand both theoretical and practical questions. By studying these UP Board Questions and Answers your basic concepts will improve a lot.
Benefits of using Computer Science Class 12 Solved Papers
Using our Computer Science solutions regularly students will be able to improve their logical thinking and problem-solving speed. These Class 12 solutions are a guide for self-study and homework assistance. Along with the chapter-wise solutions, you should also refer to our Revision Notes and Sample Papers for Chapter 6 एचटीएमएल बेसिक to get a complete preparation experience.
FAQs
The complete and updated UP Board Solutions Class 12 Computer Science Chapter 6 एचटीएमएल बेसिक is available for free on StudiesToday.com. These solutions for Class 12 Computer Science are as per latest UP Board curriculum.
Yes, our experts have revised the UP Board Solutions Class 12 Computer Science Chapter 6 एचटीएमएल बेसिक as per 2026 exam pattern. All textbook exercises have been solved and have added explanation about how the Computer Science concepts are applied in case-study and assertion-reasoning questions.
Toppers recommend using UP Board language because UP Board marking schemes are strictly based on textbook definitions. Our UP Board Solutions Class 12 Computer Science Chapter 6 एचटीएमएल बेसिक will help students to get full marks in the theory paper.
Yes, we provide bilingual support for Class 12 Computer Science. You can access UP Board Solutions Class 12 Computer Science Chapter 6 एचटीएमएल बेसिक in both English and Hindi medium.
Yes, you can download the entire UP Board Solutions Class 12 Computer Science Chapter 6 एचटीएमएल बेसिक in printable PDF format for offline study on any device.