NEW
Font size
WorksheetsHTML & CSS
Total questions: 20
Worksheet time: 10mins
What does the acronym HTML mean?(HTML अर्थ के हो ?)
Hyper Text Mask Language
Hard Text Markup Language
Hyper Text Markup Language
Hard Text Mask Language
Which label is correct to indicate a line break?(लाइन ब्रेक गर्न कुन tag सही छ)
<br>
<br/>
<hr>
<breakLine>
What is the correct way to write a comment in HTML?(HTML मा Comment गराउने सही तरिका कुन हो ?)
/* comment */
<!– comment –>
ctrl + Ç
<¡– comment –>
What is the correct way to write a link in HTML?(HTML मा लिङ्क लेख्ने सही तरिका कुन हो ?)
<link href=”#”>…<link>
<a title=”#”>…</>
<a src=”#”>…</a>
<a href=”#”>…</a>
What tag is used to write an unordered list?(अक्रमित सूची लेख्न कुन ट्याग प्रयोग गरिन्छ?)
<ol>
<ul>
<li>
<list>
What tag is used to name each row in an html list?(html सूचीमा प्रत्येक पङ्क्तिलाई नाम दिन कुन ट्याग प्रयोग गरिन्छ?)
<ol>
<ul>
<li>
<list>
The following instructions are accompanied by an attribute. Which one is correct?(img tag लेख्ने सही तरिका कुन हो ?)
<img src=”foto.jpg” alt=”text”>
<img src=”foto.jpg” value=”text”>
<img src=”foto.jpg” text=”text”>
<img src=”foto.jpg” desc=”text”>
Which of the following statements is a selector?(निम्न मध्ये कुन Selector Tag हो ?)
p
font-family
50px
red
How do you define a background color for all "p" tags in CSS?(तपाइँ कसरी CSS मा सबै "p" ट्यागहरूको Background-color गर्नुहुन्छ?)
p.all {background-color:red;}
-p {background-color:red;}
#p {background-color:red;}
p {background-color:red;}
With what property is defined the space between the border of an element and the elements that surround it?(कुनै पनि Content र Border को Space बढाउन कुन Property प्रयोग गरिन्छ ?
border
margin
padding
No answer is correct
How do you change the value of the right margin of an element?(तपाइँ कसरी Elements को Right मार्जिनको मान परिवर्तन गर्नुहुन्छ?)
text-right
right-magin
margin-right
marginright
What does CSS mean?(CSS को अर्थ के हो?)
Cascading Style Sheets
Center Style Steels
Calibre Style Sheet
No answer is correct
How do you indicate that the text color is red?(तलका मध्ये कुन चाहिँले Text को Color Change गर्न सकिन्छ?)
color: red
color: #FF0000
color: RGB(255, 0, 0)
All the answers are correct
How do you indicate that all "span" elements have bold text?(Span Tagको प्रयोग गरेर कसरी Text लाई Bold गर्ने सकिन्छ ।
span {text-color:bold}
span {text-weight:bold}
span {font-style:bold}
span {font-weight:bold}
What property is used to change the font of an element?(तलका मध्ये कुन चाहिँ Property को प्रयोग गरेर font Change गर्न सकिन्छ?)
text-type
font-type
font-family
text-family
What is HTML?(HTML के हो ?)
A kind of website editor
A markup language for creating web pages
A browser
A style sheet
Where is the <title> tag displayed?(Title tag मा लेख्खेको कहाँ देखिन्छ ?)
In the content of the page, it will be the largest heading
In the browser tab that displays the document
Not displayed because it is an element of <head>
Its use in HTML5 is discouraged
What is the correct order of the opening tags for a basic web structure?
<body>, <head>, <html>
<html>, <body>, <head>
<html>, <head>, <body>
<head>, <body>, <html>
What is the pseudo-class used to detect when the mouse passes over an element?
:first-child
:link
:sobre
:hover
What elements are, by default, of block?(तलका मध्ये कुन चाहिँ Block Level Elements हुन् ?)
<p>, <h3> y <div>
<p>, <strong> and <div>
<p>, <h3> and <span>
<strong>, <ul> and <span>
