-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsecond.html
950 lines (860 loc) · 23.6 KB
/
second.html
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
<!doctype html>
<html>
<head>
<link rel="icon" type="image/png" href="images/logo.png"/>
<title>OneLiner HTML MSQs</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
* {
box-sizing:border-box;
}
.main{
flex-direction:column;
padding:3px 10px;
float:left;
}
ol
{
display: inline-block;
margin-left: auto;
margin-right: auto;
}
body {
margin: 0px;
font-family: 'segoe ui';
}
button{
display:inline;
font-size:1em;
width:25vw;
margin:auto;
}
.nav {
height: 53px;
width: 100%;
background-color: #1177ca;
position: relative;
}
.nav > .nav-header {
display: inline;
}
.nav > .nav-header > .nav-title {
display: inline-block;
font-size: 22px;
color: #fff;
font-weight: 550;
font-family: Arial, Helvetica, sans-serif;
padding: 10px 10px 10px 10px;
}
/*to be appear in phones*/
.nav > .nav-btn {
display: none;
}
.nav{
position:fixed;
}
.nav > .nav-links {
display: inline;
float: right;
justify-content:right;
font-size: 18px;
height:50px;
}
.nav > .nav-links > ul li a{
display: block;
padding: 0 8px;
color: #fff;
line-height: 38px;
font-size: 18px;
text-decoration: none;
}
.nav > .nav-links > ul{
padding: 0;
margin-top: 5px;
list-style: none;
position: relative;
}
.nav > .nav-links > ul li{
display: inline-block;
background-color: #1177ca;
}
.nav > .nav-links > ul li:hover{
background-color: #0b65af;
border-radius: 5px;
}
.nav > #nav-check {
display: none;
}
.nav .nav-links ul a.icon{
margin-left: 80px;
margin-right: 10px;
}
.nav .nav-links ul a i{
background-color: #fff;
border-radius: 50px;
padding: 7px;
margin-left: 5px;
}
.container{
box-sizing:border-box;
width:100%;
}
.container div{
display:flex;
justify-content:center;
}
.container div ul li{
list-style:none;
}
@media (max-width:750px) {
.nav > .nav-btn {
display: inline-block;
position: absolute;
right: 0px;
top: 0px;
}
.nav > .nav-btn > label {
display: inline-block;
width: 50px;
height: 50px;
padding: 13px;
}
.nav > .nav-btn > label:hover,.nav #nav-check:checked ~ .nav-btn > label {
background-color: rgba(0, 0, 0, 0.3);
}
.nav > .nav-btn > label > span {
display: block;
width: 25px;
height: 10px;
right:20px;
border-top: 2px solid #eee;
}
.nav > .nav-links {
position: absolute;
display: block;
width: 100%;
background-color: #333;
height: 0px;
transition: all 0.3s ease-in;
overflow-y: hidden;
top: 50px;
left: 0px;
}
.nav > .nav-links > ul li a {
display: block;
width: 100%;
}
.nav > .nav-links > ul li{
display: block;
margin-bottom: 20px;
padding: 0;
background-color: #333;
}
.nav > .nav-links > ul li a{
margin-left: 40%;
}
.nav .nav-links ul a.icon{
margin-left: 33%;
}
/* */
.nav > #nav-check:not(:checked) ~ .nav-links {
height: 0px;
}
.nav > #nav-check:checked ~ .nav-links {
height: calc(100vh - 50px);
overflow-y: auto;
}
.container div ul li{
list-style:none;
}
}
@media (max-width:480px){
.container div{
flex-direction:column;
justify-content:center;
}
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script>
$(document).ready(function(){
<!--main jquery for mcqs-->
<!--first question-->
$(".ans").hide();
$(".but").click(function () {
$(this).text(function(i, v){
return v === 'View Answer' ? 'Hide Answer' : 'View Answer'
})
});
});
function show(q){
var a = document.getElementsByTagName("p");
var toggle = a[q].style.display;
if(toggle == "none"){
a[q].style.display = "block";
}
else{
a[q].style.display = "none";
}
}
</script>
</head>
<body>
<div class="container">
<div class="nav">
<input type="checkbox" id="nav-check">
<div class="nav-header">
<div class="nav-title">
OneLinerNotes
</div>
</div>
<div class="nav-btn">
<label for="nav-check">
<span></span>
<span></span>
<span></span>
</label>
</div>
<div class="nav-links">
<ul>
<li><a href="#" target="_blank">Home</a></li>
<li><a href="#" target="_blank">HTML</a></li>
<li><a href="#" target="_blank">CSS</a></li>
<li><a href="#" target="_blank">Javascript</a></li>
<li><a href="#" target="_blank">Java</a></li>
<li><a href="#" target="_blank">Mcqs</a></li>
<a class="icon">
<i class="fa fa-twitter"></i>
<i class="fa fa-linkedin"></i>
<i class="fa fa-youtube"></i>
</a>
</ul>
</div>
</div>
<center>
<div class="container">
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script>
$(document).ready(function(){
$("#h").click(function(){
$("#a").hide(1000);
});
//hide an element in webpage
$("#a").hide();
$("#sw").click(function(){
$("#a").show(1000);
});
$("#hh").click(function(){
$("#b").hide(1000);
});
//hide an element in webpage
$("#b").hide();
$("#ssw").click(function(){
$("#b").show(1000);
});
$("#hhh").click(function(){
$("#c").hide(1000);
});
//hide an element in webpage
$("#c").hide();
$("#sssw").click(function(){
$("#c").show(1000);
});
$("#aa").click(function(){
$("#d").hide(1000);
});
//hide an element in webpage
$("#d").hide();
$("#bb").click(function(){
$("#d").show(1000);
});
$("#aaa").click(function(){
$("#e").hide(1000);
});
//hide an element in webpage
$("#e").hide();
$("#bbb").click(function(){
$("#e").show(1000);
});
$("#aaaa").click(function(){
$("#f").hide(1000);
});
//hide an element in webpage
$("#f").hide();
$("#bbbb").click(function(){
$("#f").show(1000);
});
//question no.7
$("#ab").click(function(){
$("#g").hide(1000);
});
//hide an element in webpage
$("#g").hide();
$("#bc").click(function(){
$("#g").show(1000);
});
//question number 8
$("#abc").click(function(){
$("#gg").hide(1000);
});
//hide an element in webpage
$("#gg").hide();
$("#bca").click(function(){
$("#gg").show(1000);
});
//question no. 9
$("#abcc").click(function(){
$("#ggg").hide(1000);
});
//hide an element in webpage
$("#ggg").hide();
$("#bcaa").click(function(){
$("#ggg").show(1000);
});
//question no. 10
$("#abccc").click(function(){
$("#gggg").hide(1000);
});
//hide an element in webpage
$("#gggg").hide();
$("#bcaaa").click(function(){
$("#gggg").show(1000);
});
//question no. 11
$("#ca").click(function(){
$("#gf").hide(1000);
});
//hide an element in webpage
$("#gf").hide();
$("#ac").click(function(){
$("#gf").show(1000);
});
//question no. 12
$("#caa").click(function(){
$("#gff").hide(1000);
});
//hide an element in webpage
$("#gff").hide();
$("#acc").click(function(){
$("#gff").show(1000);
});
//question no. 13
$("#caaa").click(function(){
$("#gfff").hide(1000);
});
//hide an element in webpage
$("#gfff").hide();
$("#accc").click(function(){
$("#gfff").show(1000);
});
//question no. 14
$("#cb").click(function(){
$("#fg").hide(1000);
});
//hide an element in webpage
$("#fg").hide();
$("#mc").click(function(){
$("#fg").show(1000);
});
//question no.15
$("#cbb").click(function(){
$("#fgg").hide(1000);
});
//hide an element in webpage
$("#fgg").hide();
$("#mcc").click(function(){
$("#fgg").show(1000);
});
//question no. 16
$("#cbbb").click(function(){
$("#fggg").hide(1000);
});
//hide an element in webpage
$("#fggg").hide();
$("#mccc").click(function(){
$("#fggg").show(1000);
});
//question no. 17
$("#ccbb").click(function(){
$("#ffgg").hide(1000);
});
//hide an element in webpage
$("#ffgg").hide();
$("#mmc").click(function(){
$("#ffgg").show(1000);
});
//question no.18
$("#ccb").click(function(){
$("#fffg").hide(1000);
});
//hide an element in webpage
$("#fffg").hide();
$("#mmm").click(function(){
$("#fffg").show(1000);
});
//question no.19
$("#cccb").click(function(){
$("#ffffg").hide(1000);
});
//hide an element in webpage
$("#ffffg").hide();
$("#mmmb").click(function(){
$("#ffffg").show(1000);
});
//question no. 20
$("#ccccb").click(function(){
$("#fffff").hide(1000);
});
//hide an element in webpage
$("#fffff").hide();
$("#mmmmb").click(function(){
$("#fffff").show(1000);
});
//question no. 21
$("#cbccb").click(function(){
$("#cci").hide(1000);
});
//hide an element in webpage
$("#cci").hide();
$("#mbmmb").click(function(){
$("#cci").show(1000);
});
//question no. 22
$("#db").click(function(){
$("#jk").hide(1000);
});
//hide an element in webpage
$("#jk").hide();
$("#nm").click(function(){
$("#jk").show(1000);
});
//question no. 23
$("#dbb").click(function(){
$("#jkk").hide(1000);
});
//hide an element in webpage
$("#jkk").hide();
$("#nmm").click(function(){
$("#jkk").show(1000);
});
//question no. 24
$("#ddb").click(function(){
$("#jkkk").hide(1000);
});
//hide an element in webpage
$("#jkkk").hide();
$("#nmv").click(function(){
$("#jkkk").show(1000);
});
//question no.25
$("#ll").click(function(){
$("#l").hide(1000);
});
//hide an element in webpage
$("#l").hide();
$("#lll").click(function(){
$("#l").show(1000);
});
//question no.26
$("#kk").click(function(){
$("#k").hide(1000);
});
//hide an element in webpage
$("#k").hide();
$("#kkk").click(function(){
$("#k").show(1000);
});
//question no.27
$("#y").click(function(){
$("#x").hide(1000);
});
//hide an element in webpage
$("#x").hide();
$("#z").click(function(){
$("#x").show(1000);
});
//question nol 28
$("#yy").click(function(){
$("#xx").hide(1000);
});
//hide an element in webpage
$("#xx").hide();
$("#zz").click(function(){
$("#xx").show(1000);
});
});
<!--$("*")--->Selects all elements,$(this)---selects the current elements,$(":button")---selects all the buttons element-->
</script>
<div class="main">
<br><br><br>
<div id="google_translate_element"></div>
<br><br><br>
<h3>1.HTML Stands for:</h3>
<ol type="A">
<li>Hyper Tone Mangageable Language</li>
<li>Hyper Touch Markup Language</li>
<li>Hyper Text Markup Language</li>
<li>Hyper Text Machine Language</li>
</ol>
<p id="a">Option 3, Hyper Text Markup Language</p><br/>
<button id="h">Hide Answer</button>
<button id="sw">show Answer</button>
<br><br>
<h3>2.How Many types of List is in HTML?:</h3>
<ol type="A">
<li>1</li>
<li>4</li>
<li>3</li>
<li>2</li>
</ol>
<p id="b">Option 3, ordered list, unordered list, description list</p><br/>
<button id="hh">Hide Answer</button>
<button id="ssw">show Answer</button>
<br><br>
<h3>3.The correct sequence of HTML tags for starting a webpage is -</h3>
<ol type="A">
<li>head,body,html</li>
<li>html,body,head</li>
<li>body,head,html</li>
<li>html,head,body</li>
</ol>
<p id="c">Option 4, html ,head,body </p><br/>
<button id="hhh">Hide Answer</button>
<button id="sssw">show Answer</button>
<br><br>
<h3>4.Which of the following tag is used to insert a line-break in HTML?</h3>
<ol type="A">
<li>hr</li>
<li>lb</li>
<li>br</li>
<li>bl</li>
</ol>
<p id="d">Option 3, br tag is used to break line </p><br/>
<button id="aa">Hide Answer</button>
<button id="bb">show Answer</button>
<br><br>
<h3>5.How to create an unordered list (a list with the list items in bullets) in HTML?</h3>
<ol type="A">
<li>ol</li>
<li>dl</li>
<li>ul</li>
<li>dd</li>
</ol>
<p id="e">Option 3, ul tag--unordered list </p><br/>
<button id="aaa">Hide Answer</button>
<button id="bbb">show Answer</button>
<br><br>
<h3>6.Which character is used to represent the closing of a tag in HTML?</h3>
<ol type="A">
<li>\</li>
<li>!</li>
<li>/</li>
<li><></li>
</ol>
<p id="f">Option 3, /-forward slash is used in closing tag </p><br/>
<button id="aaaa">Hide Answer</button>
<button id="bbbb">show Answer</button>
<br><br>
<h3>7.How to create an ordered list (a list with the list items in numbers) in HTML?</h3>
<ol type="A">
<li>ul</li>
<li>li</li>
<li>dl</li>
<li>ol</li>
</ol>
<p id="g">Option 4, ol-- ordered list </p><br/>
<button id="ab">Hide Answer</button>
<button id="bc">show Answer</button>
<br><br>
<h3>8.Is the List attribute?</h3>
<ol type="A">
<li>ul</li>
<li>type</li>
<li>dl</li>
<li>ol</li>
</ol>
<p id="gg">Option 2, is correct. </p><br/>
<button id="abc">Hide Answer</button>
<button id="bca">show Answer</button>
<br><br>
<h3>9.The "hr" tag in HTML is used for -</h3>
<ol type="A">
<li>New Line</li>
<li>Horizontal Line</li>
<li>Vertical Line</li>
<li>Horizontal Ruler</li>
</ol>
<p id="ggg">Option 2, Hr tag is use to insert horizontal line </p><br/>
<button id="abcc">Hide Answer</button>
<button id="bcaa">show Answer</button>
<br><br>
<h3>10.What are the types of unordered or bulleted list values in HTML?-</h3>
<ol type="A">
<li>disc, square, triangle</li>
<li>polygon, triangle, circle</li>
<li>disc, circle, square</li>
<li>All of the above</li>
</ol>
<p id="gggg">Option 3,type=circle,disc,square </p><br/>
<button id="abccc">Hide Answer</button>
<button id="bcaaa">show Answer</button>
<br><br>
<h3>11.Which of the following is the correct way to start an ordered list with the count of numeric value 4??-</h3>
<ol type="A">
<li>< ol type = "1" initial = "4"></li>
<li><ol type = "1" begin = "4"></li>
<li><ol type = "1" num = "4"></li>
<li><ol type = "1" start = 4 ></li>
</ol>
<p id="gf">Option 4,type=circle,disc,square </p><br/>
<button id="ca">Hide Answer</button>
<button id="ac">show Answer</button>
<br><br>
<h3>12.An HTML program is saved by using the ____ extension.?-</h3>
<ol type="A">
<li>.hmtl</li>
<li>.html</li>
<li>.htm</li>
<li>both b and c</li>
</ol>
<p id="gff">Option 4 is correct </p><br/>
<button id="caa">Hide Answer</button>
<button id="acc">show Answer</button>
<br><br>
<h3>13.The tags in HTML are -?-</h3>
<ol type="A">
<li>case sensitive</li>
<li>Lowercase</li>
<li>case insensitive</li>
<li>Uppercase</li>
</ol>
<p id="gfff">Option 3, is correct <body> and <BODY> are same </p><br/>
<button id="caaa">Hide Answer</button>
<button id="accc">show Answer</button>
<br><br>
<h3>14.Which of the following is the root tag of the HTML document?</h3>
<ol type="A">
<li><head></li>
<li><title></li>
<li><html></li>
<li><body></li>
</ol>
<p id="fg">Option 3, is correct <html> is the root element </p><br/>
<button id="cb">Hide Answer</button>
<button id="mc">show Answer</button>
<br><br>
<h3>15.Which is the correct way to comment out something in HTML?</h3>
<ol type="A">
<li>Using ## and #</li>
<li>Using <!-- and --></li>
<li>Using </-- and -/-></li>
<li>Using<!-- and -!></li>
</ol>
<p id="fgg">Option 2, is correct <!--> </p><br/>
<button id="cbb">Hide Answer</button>
<button id="mcc">show Answer</button>
<br><br>
<h3>16.Which HTML tag is used to display the power in expression, i.e., (a<sup>2</sup> - b<sup>2</sup>)?</h3>
<ol type="A">
<li><sub></li>
<li><pow></li>
<li><sup></li>
<li><br></li>
</ol>
<p id="fggg">Option 3, For superscript we use<sup> </p><br/>
<button id="cbbb">Hide Answer</button>
<button id="mccc">show Answer</button>
<br><br>
<h3>17.HTML is the standard ____language for creating Web pages.?</h3>
<ol type="A">
<li>scripting</li>
<li>programming</li>
<li>markup</li>
<li>low level</li>
</ol>
<p id="ffgg">Option 3, HTML is a Markup Language. </p><br/>
<button id="ccbb">Hide Answer</button>
<button id="mmc">show Answer</button>
<br><br>
<h3>18.Who invented HTML?</h3>
<ol type="A">
<li>Dave Raggett</li>
<li>Tim Berners-Lee</li>
<li>Denis Ritchie</li>
<li>All of the above</li>
</ol>
<p id="fffg">Option 2, HTML is invented by Tim Berneer's Lee </p><br/>
<button id="ccb">Hide Answer</button>
<button id="mmm">show Answer</button>
<br><br>
<h3>19.HTML tags with no content are called _____.</h3>
<ol type="A">
<li>Container Tag</li>
<li>Empty Tag</li>
<li>Advanced Tag</li>
<li>Other Tag</li>
</ol>
<p id="ffffg">Option 2, Tags with no content is known as Empty Tag </p><br/>
<button id="cccb">Hide Answer</button>
<button id="mmmb">show Answer</button>
<br><br>
<h3>20.Which HTML tag is used to define bold text, without any extra importance?.</h3>
<ol type="A">
<li><strong></li>
<li><bold></li>
<li><b></li>
<li><strike></li>
</ol>
<p id="fffff">Option 3, Tags with no extra importance is defined using <b> Tag </p><br/>
<button id="ccccb">Hide Answer</button>
<button id="mmmmb">show Answer</button>
<br><br>
<h3>21. Which HTML tag is used to define text with strong importance?</h3>
<ol type="A">
<li><strong></li>
<li><bold></li>
<li><b></li>
<li><strike></li>
</ol>
<p id="cci">Option 1, Tags with extra importance is defined using <strong> Tag </p><br/>
<button id="cbccb">Hide Answer</button>
<button id="mbmmb">show Answer</button>
<br><br>
<h3>22.Which HTML tag is used to define marked or highlighted text?</h3>
<ol type="A">
<li><highlight></li>
<li><bold></li>
<li><mark></li>
<li><highlighted></li>
</ol>
<p id="jk">Option 3, To highlight text we use <mark> Tag </p><br/>
<button id="db">Hide Answer</button>
<button id="nm">show Answer</button>
<br><br>
<h3>23.Which is the correct HTML statement to display H<sub>2</sub>0 in a paragraph?</h3>
<ol type="A">
<li><p>H<sup>2</sup>O</p></li>
<li><p>H<ins>2</ins>O</p></li>
<li><p>H<below>2</below>O</p></li>
<li><p>H<sub>2</sub>O</p></li>
</ol>
<p id="jkk">Option 4, To highlight text we use <sup> Tag </p><br/>
<button id="dbb">Hide Answer</button>
<button id="nmm">show Answer</button>
<br><br>
<h3>24.Which is the correct HTML statement to display <del>Hello</del><ins>Hi!</ins> in a paragraph?</h3>
<ol type="A">
<li><p><del>Hello</del><ins>Hi!</ins></p></li>
<li><p><strike>Hello</strike><ins>Hi!</ins></p></li>
<li><p><cut>Hello</cut><ins>Hi!</ins></p></li>
<li>Both a and b</li>
</ol>
<p id="jkkk">Option 4, is correct. </p><br/>
<button id="ddb">Hide Answer</button>
<button id="nmv">show Answer</button>
<br><br>
<h3>25.Which HTML tag is used to define a hyperlink?</h3>
<ol type="A">
<li><a></li>
<li><anchor></li>
<li><link></li>
<li><href></li>
</ol>
<p id="l">Option 1, <a> is used to create hyperlinks.</p><br/>
<button id="ll">Hide Answer</button>
<button id="lll">show Answer</button>
<br><br>
<h3>26.Which is the correct syntax of <a> tag?</h3>
<ol type="A">
<li><a src="url">link text</a></li>
<li><a link="url">link text</a></li>
<li><a href="url">link text</a></li>
<li><a srclink="url">link text</a></li>
</ol>
<p id="k">Option 3, <a href="url">link text</a> this syntax is correct</p><br/>
<button id="kk">Hide Answer</button>
<button id="kkk">show Answer</button>
<br><br>
<h3>27.Why "href" attribute is used with <a> tag?</h3>
<ol type="A">
<li>To define title text</li>
<li>To define reference of a document</li>
<li>To define destination URL</li>
<li>All of the above</li>
</ol>
<p id="x">Option 3, href-->hypertext reference, used to contain url of the documents</p><br/>
<button id="y">Hide Answer</button>
<button id="z">show Answer</button>
<br><br>
<h3>28.What is the correct syntax of <img> tag?</h3>
<ol type="A">
<li><img src="url"></li>
<li><img src="url" alt="alternatetext"></li>
<li><img src="url" alt="alternatetext" /></li>
<li>All of the above</li>
</ol>
<p id="xx">Option 3, <img src="url" alt="alternatetext" /> </p><br/>
<button id="yy">Hide Answer</button>
<button id="zz">show Answer</button>
<br><br>
</table>
</div>
</div>
<div class="footer">
<footer style="background-color:#1177ca; color:white;">
<center>
<h3>Designed And Developed by Piyush Srivastava</h3>
<p>
Founder:Piyush Srivastava<br>
Bio:Piyush Srivastava is a A Level Certified Trainer, Trained 100+ Candidates in the field of Web Development and Programming Lanugages,An Open Source Contributer , contributed to 3+ Open source Projects, worked with clients like anythink form Wilco,Intern from IamHere software Lab,Suven Consultants,shine Projects. </p></center>
<div class="foot">
<div>
<ul>Social Links<hr><br>
<li>LinkedIn</li>
<li>Twitter</li>
<li>Email</li>
<li>Youtube</li>
</ul></div>
<div>
<ul>Courses<hr><br>
<li>HTML</li>
<li>CSS</li>
<li>Javascript</li>
<li>LibreOffice</li>
<li>Java</li>
</ul></div>
<div>
<ul>Roadmaps:<hr><br>
<li>FrontEnd Development</li>
<li>Backend Development</li>
<li>Devops</li>
</ul></div>
<div>
<ul>Jobs<hr><br>
<li>Remote Jobs</li>
<li>Government Jobs</li>
<li>Internships</li>
</ul></div>
</div>
</footer>
<script type="text/javascript">
function googleTranslateElementInit() {
new google.translate.TranslateElement(
{pageLanguage: 'en'},
'google_translate_element'
);
}
</script>
<script type="text/javascript"
src=
"https://translate.google.com/translate_a/element.js?
cb=googleTranslateElementInit">
</script>
<script type='text/javascript'>
(function(I, L, T, i, c, k, s) {if(I.iticks) return;I.iticks = {host:c, settings:s, clientId:k, cdn:L, queue:[]};var h = T.head || T.documentElement;var e = T.createElement(i);var l = I.location;e.async = true;e.src = (L||c)+'/client/inject-v2.min.js';h.insertBefore(e, h.firstChild);I.iticks.call = function(a, b) {I.iticks.queue.push([a, b]);};})(window, 'https://cdn-v1.intelliticks.com/prod/common', document, 'script', 'https://app.intelliticks.com', 'yzXX7ENtB2Q7yZkCa_c', {});
</script>
</div>
</body>
</html>