1. What is HTML?
HTML क्या है?
Answer: HTML stands for HyperText Markup Language. It is the standard language for creating web pages.
उत्तर: HTML का पूरा नाम HyperText Markup Language है। यह वेब पेज बनाने के लिए मानक भाषा है।
2. What is the purpose of the <head>
tag in HTML?
<head>
टैग का उद्देश्य क्या है?
Answer: The <head>
tag contains meta-information about the HTML document, such as its title, character set, and linked resources like CSS files.
उत्तर: <head>
टैग HTML दस्तावेज़ के बारे में मेटा-सूचना को शामिल करता है, जैसे कि इसका शीर्षक, कैरेक्टर सेट, और CSS फाइल्स जैसी लिंक्ड संसाधन।
3. What is the difference between <div>
and <span>
tags?
<div>
और <span>
टैग में क्या अंतर है?
Answer: The <div>
tag is a block-level element used to group other block-level and inline elements, whereas the <span>
tag is an inline element used to group inline elements.
उत्तर: <div>
टैग एक ब्लॉक-लेवल तत्व है जिसका उपयोग अन्य ब्लॉक-लेवल और इनलाइन तत्वों को समूहित करने के लिए किया जाता है, जबकि <span>
टैग एक इनलाइन तत्व है जिसका उपयोग इनलाइन तत्वों को समूहित करने के लिए किया जाता है।
4. What is the purpose of the <meta>
tag in HTML?
<meta>
टैग का उद्देश्य क्या है?
Answer: The <meta>
tag provides metadata about the HTML document, such as its character encoding, description, keywords, and author.
उत्तर: <meta>
टैग HTML दस्तावेज़ के बारे में मेटाडेटा प्रदान करता है, जैसे कि इसका कैरेक्टर एन्कोडिंग, विवरण, कीवर्ड और लेखक।
5. How do you include CSS in an HTML document?
HTML दस्तावेज़ में CSS को कैसे शामिल करें?
Answer: CSS can be included in an HTML document using the <link>
tag to link to an external stylesheet, or using the <style>
tag for internal CSS, or inline styles directly within HTML elements.
उत्तर: CSS को HTML दस्तावेज़ में एक बाहरी स्टाइलशीट को लिंक करने के लिए <link>
टैग, आंतरिक CSS के लिए <style>
टैग, या HTML तत्वों के अंदर सीधे इनलाइन स्टाइल्स के माध्यम से शामिल किया जा सकता है।
6. What is the <iframe>
tag used for in HTML?
<iframe>
टैग का उपयोग HTML में किस लिए किया जाता है?
Answer: The <iframe>
tag is used to embed another HTML document within the current document, allowing for the inclusion of content from another source.
उत्तर: <iframe>
टैग का उपयोग वर्तमान दस्तावेज़ के भीतर एक अन्य HTML दस्तावेज़ को एम्बेड करने के लिए किया जाता है, जिससे किसी अन्य स्रोत से सामग्री को शामिल किया जा सकता है।
7. What is the purpose of the <form>
tag in HTML?
<form>
टैग का उद्देश्य क्या है?
Answer: The <form>
tag is used to create an HTML form for user input, which can be submitted to a server for processing.
उत्तर: <form>
टैग का उपयोग उपयोगकर्ता इनपुट के लिए एक HTML फॉर्म बनाने के लिए किया जाता है, जिसे प्रोसेसिंग के लिए सर्वर पर सबमिट किया जा सकता है।
8. How do you create a hyperlink in HTML?
HTML में एक हाइपरलिंक कैसे बनाते हैं?
Answer: A hyperlink can be created using the <a>
tag with the href
attribute. For example: <a href="https://example.com">Visit Example</a>
.
उत्तर: एक हाइपरलिंक को <a>
टैग का उपयोग करके href
एट्रिब्यूट के साथ बनाया जा सकता है। उदाहरण के लिए: <a href="https://example.com">Visit Example</a>
।
9. What is the <header>
tag used for in HTML?
<header>
टैग का उपयोग HTML में किस लिए किया जाता है?
Answer: The <header>
tag is used to define a header for a document or section, which typically contains introductory content or navigational links.
उत्तर: <header>
टैग का उपयोग दस्तावेज़ या अनुभाग के लिए एक हेडर परिभाषित करने के लिए किया जाता है, जिसमें आमतौर पर परिचयात्मक सामग्री या नेविगेशनल लिंक शामिल होते हैं।
10. What is the purpose of the <alt>
attribute in HTML images?
<alt>
एट्रिब्यूट का उद्देश्य HTML छवियों में क्या है?
Answer: The alt
attribute provides alternative text for an image if it cannot be displayed. This helps with accessibility and search engine optimization.
उत्तर: alt
एट्रिब्यूट एक छवि के लिए वैकल्पिक टेक्स्ट प्रदान करता है यदि इसे प्रदर्शित नहीं किया जा सकता है। यह एक्सेसिबिलिटी और सर्च इंजन ऑप्टिमाइजेशन में मदद करता है।
11. What is the purpose of the <footer>
tag in HTML?
<footer>
टैग का उद्देश्य क्या है?
Answer: The <footer>
tag defines a footer for a document or section, typically containing information about the author, copyright, or contact details.
उत्तर: <footer>
टैग दस्तावेज़ या अनुभाग के लिए एक फ़ुटर परिभाषित करता है, जिसमें आमतौर पर लेखक, कॉपीराइट, या संपर्क विवरण की जानकारी शामिल होती है।
12. How can you include a JavaScript file in an HTML document?
HTML दस्तावेज़ में एक JavaScript फ़ाइल को कैसे शामिल करें?
Answer: JavaScript files can be included using the <script>
tag with the src
attribute. For example: <script src="script.js"></script>
.
उत्तर: JavaScript फ़ाइलों को <script>
टैग के साथ src
एट्रिब्यूट का उपयोग करके शामिल किया जा सकता है। उदाहरण के लिए: <script src="script.js"></script>
।
13. What is the <meta charset="UTF-8">
tag used for?
<meta charset="UTF-8">
टैग का उपयोग किस लिए किया जाता है?
Answer: The <meta charset="UTF-8">
tag specifies the character encoding for the HTML document, ensuring that the text is displayed correctly.
उत्तर: <meta charset="UTF-8">
टैग HTML दस्तावेज़ के लिए कैरेक्टर एन्कोडिंग निर्दिष्ट करता है, यह सुनिश्चित करते हुए कि टेक्स्ट सही ढंग से प्रदर्शित हो।
14. What is the difference between <ol>
and <ul>
tags?
<ol>
और <ul>
टैग में क्या अंतर है?
Answer: The <ol>
tag creates an ordered list, where each item is numbered, while the <ul>
tag creates an unordered list, where each item is marked with a bullet point.
उत्तर: <ol>
टैग एक क्रमबद्ध सूची बनाता है, जिसमें प्रत्येक आइटम को नंबरित किया जाता है, जबकि <ul>
टैग एक अवرتीकृत सूची बनाता है, जिसमें प्रत्येक आइटम को बुलेट पॉइंट के साथ चिह्नित किया जाता है।
15. What is the <table>
tag used for in HTML?
<table>
टैग का उपयोग HTML में किस लिए किया जाता है?
Answer: The <table>
tag is used to create a table in HTML. It is used in conjunction with <tr>
for rows, <th>
for headers, and <td>
for data cells.
उत्तर: <table>
टैग HTML में एक टेबल बनाने के लिए उपयोग किया जाता है। इसका उपयोग <tr>
के साथ पंक्तियों के लिए, <th>
के साथ हैडर के लिए, और <td>
के साथ डेटा कोशिकाओं के लिए किया जाता है।
16. How do you make a list item clickable in HTML?
HTML में एक सूची आइटम को क्लिक करने योग्य कैसे बनाते हैं?
Answer: To make a list item clickable, wrap it with an <a>
tag. For example: <a href="https://example.com"><li>Item</li></a>
.
उत्तर: एक सूची आइटम को क्लिक करने योग्य बनाने के लिए, इसे <a>
टैग के साथ लपेटें। उदाहरण के लिए: <a href="https://example.com"><li>Item</li></a>
।
17. What is the purpose of the <label>
tag in HTML forms?
<label>
टैग का HTML फॉर्म्स में क्या उद्देश्य है?
Answer: The <label>
tag is used to define a label for an <input>
element, making forms more accessible by providing a description for the input field.
उत्तर: <label>
टैग का उपयोग <input>
तत्व के लिए एक लेबल परिभाषित करने के लिए किया जाता है, जिससे फॉर्म अधिक एक्सेसिबल हो जाता है और इनपुट फ़ील्ड के लिए एक विवरण प्रदान किया जाता है।
18. How do you specify a default value for an input field in HTML?
HTML में एक इनपुट फ़ील्ड के लिए डिफ़ॉल्ट मान कैसे निर्दिष्ट करते हैं?
Answer: You can specify a default value for an input field using the value
attribute. For example: <input type="text" value="Default Value">
.
उत्तर: आप value
एट्रिब्यूट का उपयोग करके इनपुट फ़ील्ड के लिए एक डिफ़ॉल्ट मान निर्दिष्ट कर सकते हैं। उदाहरण के लिए: <input type="text" value="Default Value">
।
19. What does the <meta name="viewport">
tag do in HTML?
<meta name="viewport">
टैग HTML में क्या करता है?
Answer: The <meta name="viewport">
tag controls the layout on mobile browsers by setting the viewport size and scaling.
उत्तर: <meta name="viewport">
टैग मोबाइल ब्राउज़र पर लेआउट को नियंत्रित करता है, जिससे दृश्यपट का आकार और स्केलिंग सेट किया जाता है।
20. How do you include a CSS stylesheet in an HTML document?
HTML दस्तावेज़ में एक CSS स्टाइलशीट को कैसे शामिल करें?
Answer: You can include a CSS stylesheet using the <link>
tag in the <head>
section. For example: <link rel="stylesheet" href="styles.css">
.
उत्तर: आप <link>
टैग का उपयोग करके <head>
अनुभाग में एक CSS स्टाइलशीट शामिल कर सकते हैं। उदाहरण के लिए: <link rel="stylesheet" href="styles.css">
।
21. How do you add a comment in HTML?
HTML में टिप्पणी कैसे जोड़ें?
Answer: Comments in HTML are added using the <!-- Comment -->
syntax.
उत्तर: HTML में टिप्पणियाँ जोड़ने के लिए <!-- Comment -->
सिंटैक्स का उपयोग किया जाता है।
22. What is the <div>
tag used for in HTML?
<div>
टैग का HTML में क्या उपयोग है?
Answer: The <div>
tag is used to group block elements together to apply CSS styles or JavaScript functionality.
उत्तर: <div>
टैग का उपयोग ब्लॉक तत्वों को एक साथ समूहित करने के लिए किया जाता है ताकि CSS स्टाइल या JavaScript कार्यक्षमता लागू की जा सके।
23. How do you create a hyperlink in HTML?
HTML में हाइपरलिंक कैसे बनाते हैं?
Answer: A hyperlink is created using the <a>
tag with the href
attribute. For example: <a href="https://example.com">Click Here</a>
.
उत्तर: हाइपरलिंक <a>
टैग और href
एट्रिब्यूट का उपयोग करके बनाया जाता है। उदाहरण के लिए: <a href="https://example.com">Click Here</a>
।
24. What does the <iframe>
tag do in HTML?
<iframe>
टैग HTML में क्या करता है?
Answer: The <iframe>
tag is used to embed another HTML document within the current document.
उत्तर: <iframe>
टैग का उपयोग वर्तमान दस्तावेज़ के भीतर एक और HTML दस्तावेज़ एम्बेड करने के लिए किया जाता है।
25. How can you create a form in HTML?
HTML में एक फॉर्म कैसे बनाते हैं?
Answer: A form is created using the <form>
tag. Inside the form, you can use input elements like <input>
, <select>
, and <textarea>
to collect user data.
उत्तर: एक फॉर्म <form>
टैग का उपयोग करके बनाया जाता है। फॉर्म के अंदर, आप उपयोगकर्ता डेटा एकत्र करने के लिए <input>
, <select>
, और <textarea>
जैसे इनपुट तत्वों का उपयोग कर सकते हैं।
26. What is the <button>
tag used for in HTML?
<button>
टैग का HTML में क्या उपयोग है?
Answer: The <button>
tag is used to create a clickable button in an HTML document, which can be used to submit forms or trigger JavaScript functions.
उत्तर: <button>
टैग का उपयोग HTML दस्तावेज़ में एक क्लिक करने योग्य बटन बनाने के लिए किया जाता है, जिसका उपयोग फॉर्म सबमिट करने या JavaScript फ़ंक्शन को ट्रिगर करने के लिए किया जा सकता है।
27. What is the <input>
tag used for?
<input>
टैग का उपयोग किस लिए किया जाता है?
Answer: The <input>
tag is used to create various types of input fields in a form, such as text fields, checkboxes, radio buttons, and more.
उत्तर: <input>
टैग का उपयोग एक फॉर्म में विभिन्न प्रकार के इनपुट फ़ील्ड बनाने के लिए किया जाता है, जैसे टेक्स्ट फ़ील्ड, चेकबॉक्स, रेडियो बटन, और अधिक।
28. How do you include a comment in HTML?
HTML में टिप्पणी कैसे शामिल करें?
Answer: Comments in HTML are added using the <!-- Comment -->
syntax.
उत्तर: HTML में टिप्पणियाँ जोड़ने के लिए <!-- Comment -->
सिंटैक्स का उपयोग किया जाता है।
29. What does the <blockquote>
tag do?
<blockquote>
टैग क्या करता है?
Answer: The <blockquote>
tag is used to indicate that a section of text is a quotation from another source, typically displayed with indentation.
उत्तर: <blockquote>
टैग का उपयोग यह संकेत करने के लिए किया जाता है कि टेक्स्ट का एक भाग किसी अन्य स्रोत से उद्धरण है, जिसे आमतौर पर इंडेंटेशन के साथ प्रदर्शित किया जाता है।
30. What is the <code>
tag used for?
<code>
टैग का उपयोग किस लिए किया जाता है?
Answer: The <code>
tag is used to define a piece of computer code, typically displayed in a monospace font.
उत्तर: <code>
टैग का उपयोग कंप्यूटर कोड के एक भाग को परिभाषित करने के लिए किया जाता है, जो आमतौर पर मोनोस्पेस फ़ॉन्ट में प्रदर्शित होता है।
31. What is the <ul>
tag used for?
<ul>
टैग का उपयोग किस लिए किया जाता है?
Answer: The <ul>
tag is used to create an unordered (bulleted) list of items. List items are specified with the <li>
tag.
उत्तर: <ul>
टैग का उपयोग एक अव्यवस्थित (बुलेटेड) सूची बनाने के लिए किया जाता है। सूची के आइटमों को <li>
टैग के साथ निर्दिष्ट किया जाता है।
32. How do you create a table in HTML?
HTML में एक तालिका कैसे बनाते हैं?
Answer: A table is created using the <table>
tag, with rows defined by <tr>
, headers by <th>
, and data cells by <td>
.
उत्तर: एक तालिका <table>
टैग का उपयोग करके बनाई जाती है, जिसमें पंक्तियाँ <tr>
, हेडर <th>
, और डेटा सेल <td>
द्वारा परिभाषित की जाती हैं।
33. What is the purpose of the <meta charset="UTF-8">
tag?
<meta charset="UTF-8">
टैग का उद्देश्य क्या है?
Answer: The <meta charset="UTF-8">
tag specifies the character encoding for the HTML document, ensuring that the text is displayed correctly in different browsers.
उत्तर: <meta charset="UTF-8">
टैग HTML दस्तावेज़ के लिए कैरेक्टर एन्कोडिंग निर्दिष्ट करता है, यह सुनिश्चित करता है कि टेक्स्ट विभिन्न ब्राउज़रों में सही ढंग से प्रदर्शित हो।
34. How do you specify the language of the HTML document?
HTML दस्तावेज़ की भाषा कैसे निर्दिष्ट करें?
Answer: The language of the HTML document is specified using the lang
attribute in the <html>
tag. For example: <html lang="en">
.
उत्तर: HTML दस्तावेज़ की भाषा को <html>
टैग में lang
एट्रिब्यूट का उपयोग करके निर्दिष्ट किया जाता है। उदाहरण के लिए: <html lang="en">
।
35. What is the use of the <link>
tag in HTML?
<link>
टैग का HTML में क्या उपयोग है?
Answer: The <link>
tag is used to link external resources such as stylesheets to the HTML document.
उत्तर: <link>
टैग का उपयोग बाहरी संसाधनों जैसे स्टाइलशीट को HTML दस्तावेज़ से लिंक करने के लिए किया जाता है।
36. What is the purpose of the <title>
tag?
<title>
टैग का उद्देश्य क्या है?
Answer: The <title>
tag specifies the title of the HTML document, which is displayed in the browser’s title bar or tab.
उत्तर: <title>
टैग HTML दस्तावेज़ का शीर्षक निर्दिष्ट करता है, जो ब्राउज़र के शीर्षक बार या टैब में प्रदर्शित होता है।
37. How can you make text bold in HTML?
HTML में टेक्स्ट को बोल्ड कैसे करें?
Answer: To make text bold in HTML, you can use the <strong>
or <b>
tags. The <strong>
tag also indicates that the text is of strong importance.
उत्तर: HTML में टेक्स्ट को बोल्ड बनाने के लिए, आप <strong>
या <b>
टैग का उपयोग कर सकते हैं। <strong>
टैग यह भी संकेत करता है कि टेक्स्ट महत्वपूर्ण है।
38. What does the <footer>
tag represent in HTML?
<footer>
टैग HTML में क्या दर्शाता है?
Answer: The <footer>
tag represents the footer of a section or document, typically containing information like the author, copyright, or related links.
उत्तर: <footer>
टैग एक अनुभाग या दस्तावेज़ के फ़ुटर का प्रतिनिधित्व करता है, जिसमें आमतौर पर लेखक, कॉपीराइट, या संबंधित लिंक जैसी जानकारी होती है।
39. How do you create a checkbox in HTML?
HTML में चेकबॉक्स कैसे बनाते हैं?
Answer: A checkbox is created using the <input type="checkbox">
tag. For example: <input type="checkbox" name="subscribe" value="newsletter">
.
उत्तर: एक चेकबॉक्स <input type="checkbox">
टैग का उपयोग करके बनाया जाता है। उदाहरण के लिए: <input type="checkbox" name="subscribe" value="newsletter">
।
40. What does the <header>
tag represent in HTML?
<header>
टैग HTML में क्या दर्शाता है?
Answer: The <header>
tag represents introductory content or navigational links for a section or document, usually placed at the top.
उत्तर: <header>
टैग परिचयात्मक सामग्री या एक अनुभाग या दस्तावेज़ के लिए नेविगेशनल लिंक का प्रतिनिधित्व करता है, आमतौर पर शीर्ष पर रखा जाता है।
41. What is the <span>
tag used for in HTML?
<span>
टैग HTML में किस लिए उपयोग किया जाता है?
Answer: The <span>
tag is used to group inline elements and apply styles or JavaScript functionality. It does not create any visual change by itself.
उत्तर: <span>
टैग इनलाइन तत्वों को समूहित करने और स्टाइल या जावास्क्रिप्ट फ़ंक्शनलिटी लागू करने के लिए उपयोग किया जाता है। यह स्वयं कोई दृश्य परिवर्तन नहीं करता है।
42. What is the difference between <div>
and <span>
tags?
<div>
और <span>
टैग्स में क्या अंतर है?
Answer: The <div>
tag is a block-level element used to group block elements and create layout sections, while the <span>
tag is an inline element used to group inline elements without affecting the layout.
उत्तर: <div>
टैग एक ब्लॉक-लेवल तत्व है जिसका उपयोग ब्लॉक तत्वों को समूहित करने और लेआउट सेक्शन बनाने के लिए किया जाता है, जबकि <span>
टैग एक इनलाइन तत्व है जिसका उपयोग इनलाइन तत्वों को समूहित करने के लिए किया जाता है बिना लेआउट को प्रभावित किए।
43. What is the <article>
tag used for in HTML?
<article>
टैग HTML में किस लिए उपयोग किया जाता है?
Answer: The <article>
tag represents a self-contained piece of content that could be distributed or reused independently, such as a blog post or news article.
उत्तर: <article>
टैग एक स्व-निहित सामग्री का टुकड़ा प्रस्तुत करता है जिसे स्वतंत्र रूप से वितरित या पुन: उपयोग किया जा सकता है, जैसे कि एक ब्लॉग पोस्ट या समाचार लेख।
44. How do you define a hyperlink in HTML?
HTML में हाइपरलिंक कैसे परिभाषित करें?
Answer: A hyperlink is defined using the <a>
tag, with the href
attribute specifying the URL of the link. For example: <a href="https://example.com">Visit Example</a>
.
उत्तर: एक हाइपरलिंक <a>
टैग का उपयोग करके परिभाषित किया जाता है, जिसमें href
एट्रिब्यूट लिंक के URL को निर्दिष्ट करता है। उदाहरण के लिए: <a href="https://example.com">Visit Example</a>
।
45. What is the use of the <meta>
tag in HTML?
<meta>
टैग का HTML में क्या उपयोग है?
Answer: The <meta>
tag provides metadata about the HTML document, such as description, keywords, and author. It is typically placed within the <head>
section.
उत्तर: <meta>
टैग HTML दस्तावेज़ के बारे में मेटाडेटा प्रदान करता है, जैसे विवरण, कीवर्ड, और लेखक। यह आमतौर पर <head>
अनुभाग में रखा जाता है।
46. What is the purpose of the <section>
tag in HTML?
<section>
टैग का HTML में उद्देश्य क्या है?
Answer: The <section>
tag represents a generic section of a document, often with a heading, and is used to group related content.
उत्तर: <section>
टैग दस्तावेज़ के एक सामान्य अनुभाग का प्रतिनिधित्व करता है, जिसमें अक्सर एक हेडिंग होती है, और संबंधित सामग्री को समूहित करने के लिए उपयोग किया जाता है।
47. How do you embed an image in an HTML document?
HTML दस्तावेज़ में एक छवि कैसे एम्बेड करें?
Answer: An image is embedded using the <img>
tag, with the src
attribute specifying the image source URL. For example: <img src="image.jpg" alt="Description">
.
उत्तर: एक छवि <img>
टैग का उपयोग करके एम्बेड की जाती है, जिसमें src
एट्रिब्यूट छवि स्रोत URL को निर्दिष्ट करता है। उदाहरण के लिए: <img src="image.jpg" alt="Description">
।
48. What is the use of the <form>
tag in HTML?
<form>
टैग का HTML में क्या उपयोग है?
Answer: The <form>
tag is used to create an HTML form for user input. It can contain various input elements such as text fields, checkboxes, and buttons.
उत्तर: <form>
टैग का उपयोग उपयोगकर्ता इनपुट के लिए एक HTML फ़ॉर्म बनाने के लिए किया जाता है। इसमें विभिन्न इनपुट तत्व शामिल हो सकते हैं जैसे टेक्स्ट फ़ील्ड, चेकबॉक्स, और बटन।
49. What is the difference between <input type="text">
and <textarea>
?
<input type="text">
और <textarea>
में क्या अंतर है?
Answer: The <input type="text">
tag creates a single-line text input field, while the <textarea>
tag creates a multi-line text input field for longer text.
उत्तर: <input type="text">
टैग एक एकल-पंक्ति टेक्स्ट इनपुट फ़ील्ड बनाता है, जबकि <textarea>
टैग लंबी टेक्स्ट के लिए एक मल्टी-लाइन टेक्स्ट इनपुट फ़ील्ड बनाता है।
50. What is the purpose of the <label>
tag in HTML?
<label>
टैग का HTML में उद्देश्य क्या है?
Answer: The <label>
tag defines a label for an <input>
element. It improves accessibility by associating the label with the input field, which is especially useful for screen readers.
उत्तर: <label>
टैग एक <input>
तत्व के लिए लेबल परिभाषित करता है। यह इनपुट फ़ील्ड के साथ लेबल को जोड़कर पहुंच को सुधारता है, जो स्क्रीन रीडर के लिए विशेष रूप से उपयोगी होता है।
51. How do you create a drop-down list in HTML?
HTML में ड्रॉप-डाउन सूची कैसे बनाते हैं?
Answer: A drop-down list is created using the <select>
tag, with each option defined by the <option>
tag. For example: <select><option value="1">Option 1</option><option value="2">Option 2</option></select>
.
उत्तर: एक ड्रॉप-डाउन सूची <select>
टैग का उपयोग करके बनाई जाती है, जिसमें प्रत्येक विकल्प <option>
टैग द्वारा परिभाषित किया जाता है। उदाहरण के लिए: <select><option value="1">Option 1</option><option value="2">Option 2</option></select>
।
52. What is the use of the <iframe>
tag in HTML?
<iframe>
टैग का HTML में क्या उपयोग है?
Answer: The <iframe>
tag is used to embed another HTML document within the current document, allowing you to display external content within a frame.
उत्तर: <iframe>
टैग का उपयोग वर्तमान दस्तावेज़ के भीतर एक और HTML दस्तावेज़ को एम्बेड करने के लिए किया जाता है, जिससे आप एक फ्रेम के भीतर बाहरी सामग्री को प्रदर्शित कर सकते हैं।
53. How do you create a radio button in HTML?
HTML में रेडियो बटन कैसे बनाते हैं?
Answer: A radio button is created using the <input type="radio">
tag. Each radio button within a group should have the same name
attribute but a different value
attribute. For example: <input type="radio" name="group1" value="option1">Option 1</input>
.
उत्तर: एक रेडियो बटन <input type="radio">
टैग का उपयोग करके बनाया जाता है। एक समूह के भीतर प्रत्येक रेडियो बटन को एक ही name
एट्रिब्यूट होना चाहिए लेकिन एक अलग value
एट्रिब्यूट होना चाहिए। उदाहरण के लिए: <input type="radio" name="group1" value="option1">Option 1</input>
।
54. What is the <meta charset="UTF-8">
tag used for in HTML?
<meta charset="UTF-8">
टैग का HTML में क्या उपयोग है?
Answer: The <meta charset="UTF-8">
tag specifies the character encoding for the HTML document, ensuring that the text is displayed correctly in different languages and symbols.
उत्तर: <meta charset="UTF-8">
टैग HTML दस्तावेज़ के लिए कैरेक्टर एन्कोडिंग को निर्दिष्ट करता है, जिससे यह सुनिश्चित होता है कि टेक्स्ट विभिन्न भाषाओं और प्रतीकों में सही ढंग से प्रदर्शित हो।
55. How do you include a CSS file in an HTML document?
HTML दस्तावेज़ में एक CSS फ़ाइल कैसे शामिल करें?
Answer: A CSS file is included using the <link>
tag within the <head>
section of the HTML document. For example: <link rel="stylesheet" href="styles.css">
.
उत्तर: एक CSS फ़ाइल को HTML दस्तावेज़ के <head>
अनुभाग में <link>
टैग का उपयोग करके शामिल किया जाता है। उदाहरण के लिए: <link rel="stylesheet" href="styles.css">
।
56. What is the difference between <div>
and <span>
?
<div>
और <span>
में क्या अंतर है?
Answer: The <div>
tag is a block-level element, meaning it starts on a new line and takes up the full width available. The <span>
tag is an inline element, meaning it does not start on a new line and only takes up as much width as necessary.
उत्तर: <div>
टैग एक ब्लॉक-लेवल तत्व है, जिसका मतलब है कि यह नई लाइन पर शुरू होता है और उपलब्ध पूरी चौड़ाई लेता है। <span>
टैग एक इनलाइन तत्व है, जिसका मतलब है कि यह नई लाइन पर शुरू नहीं होता और केवल आवश्यक चौड़ाई लेता है।
57. How do you make a list in HTML?
HTML में एक सूची कैसे बनाते हैं?
Answer: In HTML, lists are created using <ul>
for unordered lists and <ol>
for ordered lists. Each item in the list is placed inside an <li>
element. For example: <ul><li>Item 1</li><li>Item 2</li></ul>
.
उत्तर: HTML में सूचियाँ <ul>
का उपयोग करके बनाई जाती हैं अनऑर्डर्ड सूची के लिए और <ol>
का उपयोग करके ऑर्डर्ड सूची के लिए। प्रत्येक आइटम को <li>
तत्व के अंदर रखा जाता है। उदाहरण के लिए: <ul><li>आइटम 1</li><li>आइटम 2</li></ul>
।
58. What is the purpose of the <footer>
tag in HTML?
<footer>
टैग का HTML में क्या उद्देश्य है?
Answer: The <footer>
tag is used to define a footer for a document or section. It typically contains metadata, contact information, or links to related documents.
उत्तर: <footer>
टैग का उपयोग दस्तावेज़ या अनुभाग के लिए एक फ़ूटर को परिभाषित करने के लिए किया जाता है। इसमें आमतौर पर मेटाडेटा, संपर्क जानकारी, या संबंधित दस्तावेज़ों के लिंक शामिल होते हैं।
59. How do you add comments in HTML?
HTML में टिप्पणियाँ कैसे जोड़ें?
Answer: Comments in HTML are added using the <!-- comment here -->
syntax. For example: <!-- This is a comment -->
.
उत्तर: HTML में टिप्पणियाँ <!-- comment here -->
सिंटैक्स का उपयोग करके जोड़ी जाती हैं। उदाहरण के लिए: <!-- यह एक टिप्पणी है -->
।
60. What is the use of the <meta name="viewport">
tag?
<meta name="viewport">
टैग का उपयोग क्या है?
Answer: The <meta name="viewport">
tag is used to control the layout on mobile browsers. It allows you to specify the viewport’s width, scale, and other properties to make your website more responsive.
उत्तर: <meta name="viewport">
टैग का उपयोग मोबाइल ब्राउज़र में लेआउट को नियंत्रित करने के लिए किया जाता है। यह आपको व्यूपोर्ट की चौड़ाई, स्केल और अन्य गुणों को निर्दिष्ट करने की अनुमति देता है ताकि आपकी वेबसाइट अधिक प्रतिक्रियाशील हो सके।
61. What is the difference between <strong>
and <b>
?
<strong>
और <b>
में क्या अंतर है?
Answer: The <strong>
tag is used to indicate that its contents have strong importance, while the <b>
tag simply styles text as bold without implying any additional importance.
उत्तर: <strong>
टैग का उपयोग यह इंगित करने के लिए किया जाता है कि इसके सामग्री का महत्व है, जबकि <b>
टैग केवल टेक्स्ट को बोल्ड करता है बिना किसी अतिरिक्त महत्व के संकेत के।
62. How do you create a hyperlink in HTML?
HTML में एक हाइपरलिंक कैसे बनाते हैं?
Answer: A hyperlink is created using the <a>
tag with the href
attribute. For example: <a href="https://example.com">Visit Example</a>
.
उत्तर: एक हाइपरलिंक को <a>
टैग के साथ href
एट्रिब्यूट का उपयोग करके बनाया जाता है। उदाहरण के लिए: <a href="https://example.com">Example पर जाएँ</a>
।
63. What does the <head>
element contain?
<head>
तत्व में क्या होता है?
Answer: The <head>
element contains meta-information about the HTML document, including the title, character encoding, and links to CSS files and JavaScript files.
उत्तर: <head>
तत्व HTML दस्तावेज़ के बारे में मेटा-सूचना को शामिल करता है, जिसमें शीर्षक, कैरेक्टर एन्कोडिंग, और CSS फाइलों और जावास्क्रिप्ट फाइलों के लिंक शामिल हैं।
64. How do you add an image in HTML?
HTML में एक छवि कैसे जोड़ें?
Answer: An image is added using the <img>
tag with the src
attribute to specify the path to the image file. For example: <img src="image.jpg" alt="Description">
.
उत्तर: एक छवि को <img>
टैग का उपयोग करके जोड़ा जाता है जिसमें src
एट्रिब्यूट छवि फ़ाइल के पथ को निर्दिष्ट करता है। उदाहरण के लिए: <img src="image.jpg" alt="Description">
।
65. What is the <form>
element used for?
<form>
तत्व का उपयोग किस लिए किया जाता है?
Answer: The <form>
element is used to create an HTML form for user input. It can contain various input elements like text fields, checkboxes, and submit buttons.
उत्तर: <form>
तत्व का उपयोग उपयोगकर्ता इनपुट के लिए एक HTML फॉर्म बनाने के लिए किया जाता है। इसमें टेक्स्ट फ़ील्ड, चेकबॉक्स, और सबमिट बटन जैसे विभिन्न इनपुट तत्व हो सकते हैं।
66. How do you set a default value for a form input field?
फॉर्म इनपुट फ़ील्ड के लिए डिफ़ॉल्ट मान कैसे सेट करें?
Answer: A default value for a form input field is set using the value
attribute. For example: <input type="text" value="Default Value">
.
उत्तर: फॉर्म इनपुट फ़ील्ड के लिए एक डिफ़ॉल्ट मान को value
एट्रिब्यूट का उपयोग करके सेट किया जाता है। उदाहरण के लिए: <input type="text" value="डिफ़ॉल्ट मान">
।
67. What is the purpose of the <label>
element?
<label>
तत्व का उद्देश्य क्या है?
Answer: The <label>
element is used to define a label for an input element. It provides a user-readable description for the input, making forms more accessible.
उत्तर: <label>
तत्व का उपयोग एक इनपुट तत्व के लिए एक लेबल परिभाषित करने के लिए किया जाता है। यह इनपुट के लिए एक उपयोगकर्ता-पठनीय विवरण प्रदान करता है, जिससे फ़ॉर्म अधिक सुलभ होते हैं।
68. How do you create a table in HTML?
HTML में एक तालिका कैसे बनाते हैं?
Answer: A table is created using the <table>
element with <tr>
for table rows, <th>
for table headers, and <td>
for table data cells. For example: <table><tr><th>Header</th></tr><tr><td>Data</td></tr></table>
.
उत्तर: एक तालिका को <table>
तत्व का उपयोग करके बनाया जाता है जिसमें <tr>
तालिका की पंक्तियों के लिए, <th>
तालिका के हेडर के लिए, और <td>
तालिका के डेटा कक्षों के लिए होता है। उदाहरण के लिए: <table><tr><th>हेडर</th></tr><tr><td>डेटा</td></tr></table>
।
69. What is the <section>
element used for?
<section>
तत्व का उपयोग किस लिए किया जाता है?
Answer: The <section>
element is used to define a section of content within a document. It is often used to group related content together, providing a semantic structure to the document.
उत्तर: <section>
तत्व का उपयोग दस्तावेज़ के भीतर एक सामग्री अनुभाग को परिभाषित करने के लिए किया जाता है। इसका उपयोग अक्सर संबंधित सामग्री को एक साथ समूहित करने के लिए किया जाता है, जो दस्तावेज़ को एक महत्वपूर्ण संरचना प्रदान करता है।
70. How do you use inline CSS in HTML?
HTML में इनलाइन CSS का उपयोग कैसे करें?
Answer: Inline CSS is used by adding the style
attribute directly to an HTML element. For example: <p style="color: red;">This is a red paragraph.</p>
.
उत्तर: इनलाइन CSS का उपयोग HTML तत्व को सीधे style
एट्रिब्यूट जोड़कर किया जाता है। उदाहरण के लिए: <p style="color: red;">यह एक लाल पैरा है।</p>
।
71. What is the use of the <meta>
tag in HTML?
<meta>
टैग का HTML में क्या उपयोग है?
Answer: The <meta>
tag provides metadata about the HTML document, such as description, keywords, and author. It is placed within the <head>
element.
उत्तर: <meta>
टैग HTML दस्तावेज़ के बारे में मेटाडेटा प्रदान करता है, जैसे कि विवरण, कीवर्ड, और लेखक। इसे <head>
तत्व के भीतर रखा जाता है।
72. What is the difference between <input type="text">
and <input type="password">
?
<input type="text">
और <input type="password">
में क्या अंतर है?
Answer: The <input type="text">
element is used for plain text input, whereas the <input type="password">
element masks the input text to hide it from view, typically used for password fields.
उत्तर: <input type="text">
तत्व को सामान्य टेक्स्ट इनपुट के लिए उपयोग किया जाता है, जबकि <input type="password">
तत्व इनपुट टेक्स्ट को छिपाता है, जो आमतौर पर पासवर्ड फ़ील्ड के लिए उपयोग किया जाता है।
73. What is the <title>
element used for?
<title>
तत्व का उपयोग किस लिए किया जाता है?
Answer: The <title>
element defines the title of the HTML document, which is displayed in the browser's title bar or tab.
उत्तर: <title>
तत्व HTML दस्तावेज़ का शीर्षक परिभाषित करता है, जो ब्राउज़र की शीर्षक पट्टी या टैब में दिखाया जाता है।
74. How do you create a dropdown menu in HTML?
HTML में एक ड्रॉपडाउन मेनू कैसे बनाते हैं?
Answer: A dropdown menu is created using the <select>
element with <option>
elements for each item in the menu. For example: <select><option>Option 1</option><option>Option 2</option></select>
.
उत्तर: एक ड्रॉपडाउन मेनू <select>
तत्व का उपयोग करके बनाया जाता है जिसमें मेनू में प्रत्येक आइटम के लिए <option>
तत्व होते हैं। उदाहरण के लिए: <select><option>विकल्प 1</option><option>विकल्प 2</option></select>
।
75. How do you add a comment to your HTML code?
आप अपने HTML कोड में टिप्पणी कैसे जोड़ते हैं?
Answer: A comment is added in HTML using the <!-- comment here -->
syntax. Comments are not displayed in the browser.
उत्तर: HTML में टिप्पणी जोड़ने के लिए <!-- comment here -->
सिंटैक्स का उपयोग किया जाता है। टिप्पणियाँ ब्राउज़र में नहीं दिखाई देती हैं।
76. What does the <base>
tag do?
<base>
टैग क्या करता है?
Answer: The <base>
tag specifies a base URL for relative URLs in a document. It must be placed inside the <head>
element.
उत्तर: <base>
टैग दस्तावेज़ में सापेक्ष URL के लिए एक आधार URL निर्दिष्ट करता है। इसे <head>
तत्व के भीतर रखा जाना चाहिए।
77. How do you use the <iframe>
tag in HTML?
<iframe>
टैग का HTML में उपयोग कैसे करें?
Answer: The <iframe>
tag is used to embed another HTML document within the current document. For example: <iframe src="page.html"></iframe>
.
उत्तर: <iframe>
टैग का उपयोग वर्तमान दस्तावेज़ के भीतर अन्य HTML दस्तावेज़ को एम्बेड करने के लिए किया जाता है। उदाहरण के लिए: <iframe src="page.html"></iframe>
।
78. What is the use of the <meta charset="UTF-8">
tag?
<meta charset="UTF-8">
टैग का उपयोग क्या है?
Answer: The <meta charset="UTF-8">
tag specifies the character encoding for the HTML document, which helps ensure that text is displayed correctly across different browsers and devices.
उत्तर: <meta charset="UTF-8">
टैग HTML दस्तावेज़ के लिए कैरेक्टर एन्कोडिंग निर्दिष्ट करता है, जो सुनिश्चित करता है कि टेक्स्ट विभिन्न ब्राउज़रों और उपकरणों पर सही ढंग से प्रदर्शित हो।
79. How do you specify a background color in HTML?
HTML में एक बैकग्राउंड रंग कैसे निर्दिष्ट करें?
Answer: Background color is specified using the style
attribute with the background-color
property in CSS. For example: <div style="background-color: #f00;">Content</div>
.
उत्तर: बैकग्राउंड रंग को CSS में background-color
प्रॉपर्टी के साथ style
एट्रिब्यूट का उपयोग करके निर्दिष्ट किया जाता है। उदाहरण के लिए: <div style="background-color: #f00;">सामग्री</div>
।
80. What is the purpose of the <link>
tag in HTML?
<link>
टैग का HTML में क्या उद्देश्य है?
Answer: The <link>
tag is used to link external resources to the HTML document, such as CSS stylesheets. It is placed within the <head>
element.
उत्तर: <link>
टैग HTML दस्तावेज़ को बाहरी संसाधनों से जोड़ने के लिए उपयोग किया जाता है, जैसे कि CSS स्टाइलशीट। इसे <head>
तत्व के भीतर रखा जाता है।
81. How do you define a hyperlink in HTML?
HTML में एक हाइपरलिंक कैसे परिभाषित करते हैं?
Answer: A hyperlink is defined using the <a>
tag with the href
attribute. For example: <a href="https://www.example.com">Visit Example</a>
.
उत्तर: एक हाइपरलिंक को <a>
टैग के साथ href
एट्रिब्यूट का उपयोग करके परिभाषित किया जाता है। उदाहरण के लिए: <a href="https://www.example.com">Example पर जाएँ</a>
।
82. What is the purpose of the <noscript>
tag?
<noscript>
टैग का उद्देश्य क्या है?
Answer: The <noscript>
tag provides alternative content for users who have JavaScript disabled in their browsers.
उत्तर: <noscript>
टैग उन उपयोगकर्ताओं के लिए वैकल्पिक सामग्री प्रदान करता है जिन्होंने अपने ब्राउज़र में जावास्क्रिप्ट को बंद किया है।
83. How do you create a table in HTML?
HTML में एक तालिका कैसे बनाते हैं?
Answer: A table is created using the <table>
tag, with rows defined by <tr>
tags and cells defined by <td>
tags. For example: <table><tr><td>Cell 1</td><td>Cell 2</td></tr></table>
.
उत्तर: एक तालिका को <table>
टैग का उपयोग करके बनाया जाता है, जिसमें पंक्तियाँ <tr>
टैग द्वारा और कोशिकाएँ <td>
टैग द्वारा परिभाषित की जाती हैं। उदाहरण के लिए: <table><tr><td>Cell 1</td><td>Cell 2</td></tr></table>
।
84. What is the <form>
tag used for in HTML?
<form>
टैग का HTML में क्या उपयोग है?
Answer: The <form>
tag is used to collect user input. It can include various input elements like text fields, radio buttons, checkboxes, and a submit button.
उत्तर: <form>
टैग का उपयोग उपयोगकर्ता इनपुट एकत्र करने के लिए किया जाता है। इसमें विभिन्न इनपुट तत्व शामिल हो सकते हैं जैसे टेक्स्ट फील्ड, रेडियो बटन, चेकबॉक्स, और एक सबमिट बटन।
85. How do you use the <iframe>
tag to embed a video?
<iframe>
टैग का उपयोग वीडियो एम्बेड करने के लिए कैसे करते हैं?
Answer: You can use the <iframe>
tag to embed a video by setting the src
attribute to the video URL. For example: <iframe src="https://www.youtube.com/embed/dQw4w9WgXcQ"></iframe>
.
उत्तर: आप वीडियो को एम्बेड करने के लिए <iframe>
टैग का उपयोग कर सकते हैं, src
एट्रिब्यूट को वीडियो URL पर सेट करके। उदाहरण के लिए: <iframe src="https://www.youtube.com/embed/dQw4w9WgXcQ"></iframe>
।
86. How do you add a border to an image in HTML?
HTML में एक छवि को बॉर्डर कैसे जोड़ते हैं?
Answer: To add a border to an image, you use the style
attribute with the border
property. For example: <img src="image.jpg" style="border: 2px solid black;">
.
उत्तर: एक छवि को बॉर्डर जोड़ने के लिए, आप style
एट्रिब्यूट का उपयोग करके border
प्रॉपर्टी का उपयोग करते हैं। उदाहरण के लिए: <img src="image.jpg" style="border: 2px solid black;">
।
87. How do you create an ordered list in HTML?
HTML में एक आदेशित सूची कैसे बनाते हैं?
Answer: An ordered list is created using the <ol>
tag with list items defined by <li>
tags. For example: <ol><li>Item 1</li><li>Item 2</li></ol>
.
उत्तर: एक आदेशित सूची <ol>
टैग का उपयोग करके बनाई जाती है जिसमें सूची आइटम <li>
टैग द्वारा परिभाषित होते हैं। उदाहरण के लिए: <ol><li>आइटम 1</li><li>आइटम 2</li></ol>
।
88. What is the <fieldset>
tag used for in HTML?
<fieldset>
टैग का HTML में क्या उपयोग है?
Answer: The <fieldset>
tag is used to group related elements within a form, often with a <legend>
tag to provide a caption for the fieldset.
उत्तर: <fieldset>
टैग का उपयोग एक फ़ॉर्म में संबंधित तत्वों को समूहित करने के लिए किया जाता है, अक्सर <legend>
टैग के साथ जो फ़ील्डसेट के लिए एक कैप्शन प्रदान करता है।
89. How do you add a tooltip to an HTML element?
HTML तत्व में एक टूलटिप कैसे जोड़ते हैं?
Answer: A tooltip is added using the title
attribute on an HTML element. For example: <a href="#" title="This is a tooltip">Hover over me</a>
.
उत्तर: एक टूलटिप को HTML तत्व पर title
एट्रिब्यूट का उपयोग करके जोड़ा जाता है। उदाहरण के लिए: <a href="#" title="यह एक टूलटिप है">मुझे होवर करें</a>
।
90. What is the purpose of the <meta>
tag in HTML?
<meta>
टैग का HTML में क्या उद्देश्य है?
Answer: The <meta>
tag provides metadata about the HTML document, such as character encoding, author, and viewport settings.
उत्तर: <meta>
टैग HTML दस्तावेज़ के बारे में मेटाडेटा प्रदान करता है, जैसे कि कैरेक्टर एन्कोडिंग, लेखक, और व्यूपोर्ट सेटिंग्स।
91. What is the purpose of the <meta charset="UTF-8">
tag?
<meta charset="UTF-8">
टैग का उद्देश्य क्या है?
Answer: The <meta charset="UTF-8">
tag specifies the character encoding for the HTML document, ensuring that characters are displayed correctly.
उत्तर: <meta charset="UTF-8">
टैग HTML दस्तावेज़ के लिए कैरेक्टर एन्कोडिंग निर्दिष्ट करता है, यह सुनिश्चित करते हुए कि अक्षर सही ढंग से प्रदर्शित हों।
92. How can you make a text input field required in an HTML form?
HTML फ़ॉर्म में एक टेक्स्ट इनपुट फील्ड को आवश्यक कैसे बनाते हैं?
Answer: You can make a text input field required by adding the required
attribute to the <input>
tag. For example: <input type="text" required>
.
उत्तर: आप <input>
टैग में required
एट्रिब्यूट जोड़कर एक टेक्स्ट इनपुट फील्ड को आवश्यक बना सकते हैं। उदाहरण के लिए: <input type="text" required>
।
93. How do you use the <label>
tag with form elements?
<label>
टैग का उपयोग फ़ॉर्म तत्वों के साथ कैसे करते हैं?
Answer: The <label>
tag is used to define a label for an <input>
element. It can be associated with an input field using the for
attribute that matches the id
of the input. For example: <label for="username">Username:</label><input type="text" id="username">
.
उत्तर: <label>
टैग का उपयोग <input>
तत्व के लिए लेबल परिभाषित करने के लिए किया जाता है। इसे for
एट्रिब्यूट का उपयोग करके एक इनपुट फ़ील्ड के साथ जोड़ा जा सकता है जो इनपुट के id
से मेल खाता है। उदाहरण के लिए: <label for="username">यूजरनेम:</label><input type="text" id="username">
।
94. What does the action
attribute of the <form>
tag specify?
<form>
टैग के action
एट्रिब्यूट का क्या उपयोग है?
Answer: The action
attribute of the <form>
tag specifies the URL where the form data will be sent when the form is submitted.
उत्तर: <form>
टैग के action
एट्रिब्यूट से उस URL को निर्दिष्ट किया जाता है जहां फ़ॉर्म डेटा भेजा जाएगा जब फ़ॉर्म सबमिट होगा।
95. How can you set the default value of a text input field in HTML?
HTML में एक टेक्स्ट इनपुट फील्ड का डिफ़ॉल्ट मूल्य कैसे सेट करते हैं?
Answer: You can set the default value of a text input field using the value
attribute. For example: <input type="text" value="Default Value">
.
उत्तर: आप value
एट्रिब्यूट का उपयोग करके एक टेक्स्ट इनपुट फील्ड का डिफ़ॉल्ट मूल्य सेट कर सकते हैं। उदाहरण के लिए: <input type="text" value="डिफ़ॉल्ट मूल्य">
।
96. What is the <input type="submit">
tag used for in HTML forms?
<input type="submit">
टैग का HTML फ़ॉर्म में क्या उपयोग है?
Answer: The <input type="submit">
tag is used to create a submit button that sends the form data to the server.
उत्तर: <input type="submit">
टैग का उपयोग एक सबमिट बटन बनाने के लिए किया जाता है जो फ़ॉर्म डेटा को सर्वर पर भेजता है।
97. How do you specify an email input field in HTML?
HTML में एक ईमेल इनपुट फील्ड को कैसे निर्दिष्ट करते हैं?
Answer: You specify an email input field using <input type="email">
. This ensures that the input is validated as an email address.
उत्तर: आप <input type="email">
का उपयोग करके एक ईमेल इनपुट फ़ील्ड निर्दिष्ट करते हैं। यह सुनिश्चित करता है कि इनपुट को एक ईमेल पता के रूप में मान्यता दी जाए।
98. What does the <textarea>
tag do in HTML?
<textarea>
टैग HTML में क्या करता है?
Answer: The <textarea>
tag is used to create a multi-line text input field. It allows users to enter longer text than a single-line input.
उत्तर: <textarea>
टैग का उपयोग एक बहु-पंक्ति टेक्स्ट इनपुट फील्ड बनाने के लिए किया जाता है। यह उपयोगकर्ताओं को एकल-पंक्ति इनपुट की तुलना में अधिक लंबा टेक्स्ट दर्ज करने की अनुमति देता है।
99. How do you specify a radio button in HTML?
HTML में एक रेडियो बटन को कैसे निर्दिष्ट करते हैं?
Answer: A radio button is specified using the <input type="radio">
tag. Radio buttons with the same name
attribute are grouped together, allowing only one to be selected at a time.
उत्तर: एक रेडियो बटन को <input type="radio">
टैग का उपयोग करके निर्दिष्ट किया जाता है। एक ही name
एट्रिब्यूट वाले रेडियो बटन एक साथ समूहित होते हैं, जिससे केवल एक को ही चयनित किया जा सकता है।
100. How do you define a checkbox in HTML?
HTML में एक चेकबॉक्स को कैसे परिभाषित करते हैं?
Answer: A checkbox is defined using the <input type="checkbox">
tag. Multiple checkboxes can be used to select one or more options.
उत्तर: एक चेकबॉक्स को <input type="checkbox">
टैग का उपयोग करके परिभाषित किया जाता है। कई चेकबॉक्स का उपयोग एक या अधिक विकल्पों को चुनने के लिए किया जा सकता है।