-
Notifications
You must be signed in to change notification settings - Fork 0
/
html_questions.json
74 lines (74 loc) · 2.6 KB
/
html_questions.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[
{
"title": "Why We Use <br> Element",
"answer_1": "To Make Text Bold",
"answer_2": "To Make Text Italic",
"answer_3": "To Add Breakline",
"answer_4": "To Create Horizontal Line",
"right_answer": "To Add Breakline"
},
{
"title": "Is <img> Element Has Attribute href",
"answer_1": "Yes",
"answer_2": "No Its For Anchor Tag <a>",
"answer_3": "All Elements Has This Attribute",
"answer_4": "Answer 1 And 3 Is Right",
"right_answer": "No Its For Anchor Tag <a>"
},
{
"title": "How Can We Make Element Text Bold",
"answer_1": "Putting It Inside <b> Tag",
"answer_2": "Putting It Inside <strong> Tag",
"answer_3": "Customizing It With Font-Weight Property In CSS",
"answer_4": "All Answers Is Right",
"right_answer": "All Answers Is Right"
},
{
"title": "What Is The Right Hierarchy For Creating Part Of Page",
"answer_1": "<h2> Then <p> Then <h1> Then <p> Then <h3> Then <p> Then <img>",
"answer_2": "<h1> Then <p> Then <h3> Then <p> Then <h2> Then <p> Then <img>",
"answer_3": "<h2> Then <p> Then <h3> Then <p> Then <h1> Then <p> Then <img>",
"answer_4": "All Solutions Is Wrong",
"right_answer": "All Solutions Is Wrong"
},
{
"title": "How Can We Include External Page Inside Our HTML Page",
"answer_1": "By Using Include in HTML",
"answer_2": "By Using Load In HTML",
"answer_3": "By Using iFrame Tag",
"answer_4": "All Solutions Is Wrong",
"right_answer": "By Using iFrame Tag"
},
{
"title": "What Is The Tag That Not Exists in HTML",
"answer_1": "<object>",
"answer_2": "<basefont>",
"answer_3": "<abbr>",
"answer_4": "All Tags Is Exists in HTML",
"right_answer": "All Tags Is Exists in HTML"
},
{
"title": "How We Specify Document Type Of HTML5 Page",
"answer_1": "<DOCTYPE html>",
"answer_2": "<DOCTYPE html5>",
"answer_3": "<!DOCTYPE html5>",
"answer_4": "<!DOCTYPE html>",
"right_answer": "<!DOCTYPE html>"
},
{
"title": "What Is The Element Thats Not Exists in HTML5 Semantics",
"answer_1": "<article>",
"answer_2": "<section>",
"answer_3": "<blockquote>",
"answer_4": "<aside>",
"right_answer": "<blockquote>"
},
{
"title": "In HTML Can We Use This Way To Add Attributes",
"answer_1": "<div class='class-name'>",
"answer_2": "<div class=class-name>",
"answer_3": "<div class=\"class-name\">",
"answer_4": "All Is Right",
"right_answer": "All Is Right"
}
]