File size: 32,247 Bytes
1ce1827 |
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 |
[
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<img src=\\\"logo.png\\\">",
"Output": "<img src=\\\"logo.png\\\" alt=\\\"Company Logo\\\">"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<a href=\\\"page.html\\\">Click here</a>",
"Output": "<a href=\\\"page.html\\\" title=\\\"Go to Page\\\">Click here</a>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<button>Submit</button>",
"Output": "<button aria-label=\\\"Submit form\\\">Submit</button>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<div role=\\\"button\\\">Submit</div>",
"Output": "<div role=\\\"button\\\" tabindex=\\\"0\\\" aria-label=\\\"Submit form\\\">Submit</div>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<iframe src=\\\"video.html\\\"></iframe>",
"Output": "<iframe src=\\\"video.html\\\" title=\\\"Video player\\\"></iframe>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<table><tr><td>Content</td></tr></table>",
"Output": "<table role=\\\"presentation\\\"><tr><td>Content</td></tr></table>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<form><input type=\\\"text\\\"></form>",
"Output": "<form><label for=\\\"text-input\\\">Name</label><input id=\\\"text-input\\\" type=\\\"text\\\"></form>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<input type=\\\"text\\\">",
"Output": "<input type=\\\"text\\\" aria-label=\\\"Text input field\\\">"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<audio controls></audio>",
"Output": "<audio controls aria-label=\\\"Audio player\\\"></audio>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<video controls></video>",
"Output": "<video controls aria-label=\\\"Video player\\\"></video>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<div><h1>Header</h1><p>Paragraph</p></div>",
"Output": "<section><h1>Header</h1><p>Paragraph</p></section>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<span>Tooltip</span>",
"Output": "<span role=\\\"tooltip\\\">Tooltip</span>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<ul><li>Item</li></ul>",
"Output": "<ul><li aria-label=\\\"List item\\\">Item</li></ul>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<nav>Menu</nav>",
"Output": "<nav aria-label=\\\"Main menu\\\">Menu</nav>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<select><option>Option</option></select>",
"Output": "<select aria-label=\\\"Dropdown menu\\\"><option>Option</option></select>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<textarea></textarea>",
"Output": "<textarea aria-label=\\\"Text area\\\"></textarea>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<header>Header</header>",
"Output": "<header role=\\\"banner\\\">Header</header>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<footer>Footer</footer>",
"Output": "<footer role=\\\"contentinfo\\\">Footer</footer>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<input type=\\\"checkbox\\\">",
"Output": "<input type=\\\"checkbox\\\" aria-label=\\\"Checkbox\\\">"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<input type=\\\"radio\\\">",
"Output": "<input type=\\\"radio\\\" aria-label=\\\"Radio button\\\">"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<progress></progress>",
"Output": "<progress aria-label=\\\"Progress bar\\\"></progress>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<label></label>",
"Output": "<label aria-label=\\\"Label text\\\"></label>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<abbr title=\\\"World Wide Web\\\">WWW</abbr>",
"Output": "<abbr title=\\\"World Wide Web\\\">WWW</abbr>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<blockquote>Quote</blockquote>",
"Output": "<blockquote cite=\\\"source\\\">Quote</blockquote>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<cite>Citation</cite>",
"Output": "<cite>Citation</cite>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<code>Code</code>",
"Output": "<code>Code</code>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<pre>Preformatted text</pre>",
"Output": "<pre aria-label=\\\"Preformatted text\\\">Preformatted text</pre>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<q>Quote</q>",
"Output": "<q cite=\\\"source\\\">Quote</q>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<dfn>Definition</dfn>",
"Output": "<dfn>Definition</dfn>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<kbd>Keyboard input</kbd>",
"Output": "<kbd aria-label=\\\"Keyboard input\\\">Keyboard input</kbd>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<samp>Sample output</samp>",
"Output": "<samp aria-label=\\\"Sample output\\\">Sample output</samp>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<var>Variable</var>",
"Output": "<var aria-label=\\\"Variable\\\">Variable</var>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<time>10:00</time>",
"Output": "<time datetime=\\\"10:00\\\">10:00</time>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<figure><img src=\\\"image.png\\\"></figure>",
"Output": "<figure><img src=\\\"image.png\\\" alt=\\\"Description\\\"><figcaption>Image caption</figcaption></figure>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<mark>Highlight</mark>",
"Output": "<mark aria-label=\\\"Highlight\\\">Highlight</mark>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<wbr>",
"Output": "<wbr aria-label=\\\"Word break\\\">"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<bdo dir=\\\"rtl\\\">Text</bdo>",
"Output": "<bdo dir=\\\"rtl\\\" aria-label=\\\"Right to left text\\\">Text</bdo>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<ins>Inserted text</ins>",
"Output": "<ins aria-label=\\\"Inserted text\\\">Inserted text</ins>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<del>Deleted text</del>",
"Output": "<del aria-label=\\\"Deleted text\\\">Deleted text</del>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<b>Bold text</b>",
"Output": "<b aria-label=\\\"Bold text\\\">Bold text</b>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<i>Italic text</i>",
"Output": "<i aria-label=\\\"Italic text\\\">Italic text</i>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<strong>Strong text</strong>",
"Output": "<strong aria-label=\\\"Strong text\\\">Strong text</strong>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<em>Emphasized text</em>",
"Output": "<em aria-label=\\\"Emphasized text\\\">Emphasized text</em>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<small>Small text</small>",
"Output": "<small aria-label=\\\"Small text\\\">Small text</small>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<sup>Superscript</sup>",
"Output": "<sup aria-label=\\\"Superscript\\\">Superscript</sup>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<sub>Subscript</sub>",
"Output": "<sub aria-label=\\\"Subscript\\\">Subscript</sub>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<ruby>Ruby annotation</ruby>",
"Output": "<ruby aria-label=\\\"Ruby annotation\\\">Ruby annotation</ruby>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<rp>(</rp><rt>Text</rt><rp>)</rp>",
"Output": "<rp aria-label=\\\"Ruby parenthesis\\\">(</rp><rt aria-label=\\\"Ruby text\\\">Text</rt><rp aria-label=\\\"Ruby parenthesis\\\">)</rp>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<rt>Text</rt>",
"Output": "<rt aria-label=\\\"Ruby text\\\">Text</rt>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<address>Contact info</address>",
"Output": "<address aria-label=\\\"Contact information\\\">Contact info</address>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<figcaption>Image caption</figcaption>",
"Output": "<figcaption aria-label=\\\"Image caption\\\">Image caption</figcaption>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<legend>Fieldset legend</legend>",
"Output": "<legend aria-label=\\\"Fieldset legend\\\">Fieldset legend</legend>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<caption>Table caption</caption>",
"Output": "<caption aria-label=\\\"Table caption\\\">Table caption</caption>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<datalist></datalist>",
"Output": "<datalist aria-label=\\\"Data list\\\"></datalist>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<optgroup></optgroup>",
"Output": "<optgroup aria-label=\\\"Option group\\\"></optgroup>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<option>Option</option>",
"Output": "<option aria-label=\\\"Option\\\">Option</option>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<output></output>",
"Output": "<output aria-label=\\\"Output\\\"></output>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<details></details>",
"Output": "<details aria-label=\\\"Details\\\"></details>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<summary>Summary</summary>",
"Output": "<summary aria-label=\\\"Summary\\\">Summary</summary>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<dialog></dialog>",
"Output": "<dialog aria-label=\\\"Dialog\\\"></dialog>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<menu></menu>",
"Output": "<menu aria-label=\\\"Menu\\\"></menu>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<menuitem></menuitem>",
"Output": "<menuitem aria-label=\\\"Menu item\\\"></menuitem>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<picture><source src=\\\"image.png\\\"></picture>",
"Output": "<picture><source src=\\\"image.png\\\" aria-label=\\\"Picture source\\\"></picture>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<source src=\\\"audio.mp3\\\">",
"Output": "<source src=\\\"audio.mp3\\\" aria-label=\\\"Audio source\\\">"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<track src=\\\"subtitles.vtt\\\">",
"Output": "<track src=\\\"subtitles.vtt\\\" label=\\\"English subtitles\\\">"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<bdi>Bi-directional text</bdi>",
"Output": "<bdi aria-label=\\\"Bi-directional text\\\">Bi-directional text</bdi>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<div>Content</div>",
"Output": "<div role=\\\"document\\\">Content</div>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<span>Inline text</span>",
"Output": "<span role=\\\"text\\\">Inline text</span>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<hr>",
"Output": "<hr aria-label=\\\"Horizontal rule\\\">"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<br>",
"Output": "<br aria-label=\\\"Line break\\\">"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<ol><li>Item</li></ol>",
"Output": "<ol><li aria-label=\\\"Ordered list item\\\">Item</li></ol>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<dl><dt>Term</dt><dd>Definition</dd></dl>",
"Output": "<dl aria-label=\\\"Definition list\\\"><dt>Term</dt><dd>Definition</dd></dl>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<h1>Header</h1>",
"Output": "<h1 aria-label=\\\"Heading level 1\\\">Header</h1>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<h2>Subheader</h2>",
"Output": "<h2 aria-label=\\\"Heading level 2\\\">Subheader</h2>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<h3>Sub-subheader</h3>",
"Output": "<h3 aria-label=\\\"Heading level 3\\\">Sub-subheader</h3>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<h4>Title</h4>",
"Output": "<h4 aria-label=\\\"Heading level 4\\\">Title</h4>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<h5>Subtitle</h5>",
"Output": "<h5 aria-label=\\\"Heading level 5\\\">Subtitle</h5>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<h6>Note</h6>",
"Output": "<h6 aria-label=\\\"Heading level 6\\\">Note</h6>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<main>Content</main>",
"Output": "<main aria-label=\\\"Main content\\\">Content</main>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<article>Article content</article>",
"Output": "<article aria-label=\\\"Article content\\\">Article content</article>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<section>Section content</section>",
"Output": "<section aria-label=\\\"Section content\\\">Section content</section>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<aside>Aside content</aside>",
"Output": "<aside aria-label=\\\"Aside content\\\">Aside content</aside>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<form></form>",
"Output": "<form aria-label=\\\"Form\\\"></form>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<fieldset></fieldset>",
"Output": "<fieldset aria-label=\\\"Field set\\\"></fieldset>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<div aria-hidden=\\\"true\\\"></div>",
"Output": "<div aria-hidden=\\\"true\\\" tabindex=\\\"-1\\\"></div>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<label for=\\\"input\\\"></label>",
"Output": "<label for=\\\"input\\\" aria-label=\\\"Input label\\\"></label>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<ul><li>Item</li></ul>",
"Output": "<ul aria-label=\\\"Unordered list\\\"><li>Item</li></ul>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<nav>Navigation</nav>",
"Output": "<nav aria-label=\\\"Navigation menu\\\">Navigation</nav>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<input type=\\\"text\\\" placeholder=\\\"Name\\\">",
"Output": "<input type=\\\"text\\\" placeholder=\\\"Name\\\" aria-label=\\\"Name input field\\\">"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<input type=\\\"number\\\">",
"Output": "<input type=\\\"number\\\" aria-label=\\\"Number input field\\\">"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<button>Click me</button>",
"Output": "<button aria-label=\\\"Click me button\\\">Click me</button>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<map name=\\\"map\\\">",
"Output": "<map name=\\\"map\\\" aria-label=\\\"Image map\\\">"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<area shape=\\\"rect\\\">",
"Output": "<area shape=\\\"rect\\\" alt=\\\"Area description\\\">"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<table>",
"Output": "<table aria-label=\\\"Data table\\\">"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<th>Header</th>",
"Output": "<th scope=\\\"col\\\">Header</th>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<td>Data</td>",
"Output": "<td aria-label=\\\"Data cell\\\">Data</td>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<caption>Table title</caption>",
"Output": "<caption aria-label=\\\"Table title\\\">Table title</caption>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<img src=\\\"example.jpg\\\">",
"Output": "<img src=\\\"example.jpg\\\" alt=\\\"Example image\\\">"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<video src=\\\"movie.mp4\\\"></video>",
"Output": "<video src=\\\"movie.mp4\\\" aria-label=\\\"Movie player\\\"></video>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<audio src=\\\"audio.mp3\\\"></audio>",
"Output": "<audio src=\\\"audio.mp3\\\" aria-label=\\\"Audio player\\\"></audio>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<link rel=\\\"stylesheet\\\">",
"Output": "<link rel=\\\"stylesheet\\\" aria-label=\\\"Stylesheet\\\">"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<meta name=\\\"description\\\" content=\\\"\\\">",
"Output": "<meta name=\\\"description\\\" content=\\\"\\\" aria-label=\\\"Meta description\\\">"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<script src=\\\"script.js\\\"></script>",
"Output": "<script src=\\\"script.js\\\" aria-label=\\\"Script\\\">"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<style></style>",
"Output": "<style aria-label=\\\"Style block\\\"></style>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<title>Page Title</title>",
"Output": "<title aria-label=\\\"Page title\\\">Page Title</title>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<a href=\\\"link.html\\\">Link</a>",
"Output": "<a href=\\\"link.html\\\" aria-label=\\\"Hyperlink\\\">Link</a>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<meta charset=\\\"UTF-8\\\">",
"Output": "<meta charset=\\\"UTF-8\\\" aria-label=\\\"Character set\\\">"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<button>Start</button>",
"Output": "<button aria-label=\\\"Start button\\\">Start</button>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<input type=\\\"submit\\\">",
"Output": "<input type=\\\"submit\\\" aria-label=\\\"Submit button\\\">"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<input type=\\\"reset\\\">",
"Output": "<input type=\\\"reset\\\" aria-label=\\\"Reset button\\\">"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<button>OK</button>",
"Output": "<button aria-label=\\\"OK button\\\">OK</button>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<a href=\\\"#\\\">Skip to content</a>",
"Output": "<a href=\\\"#\\\" aria-label=\\\"Skip to content\\\">Skip to content</a>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<input type=\\\"password\\\">",
"Output": "<input type=\\\"password\\\" aria-label=\\\"Password field\\\">"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<input type=\\\"email\\\">",
"Output": "<input type=\\\"email\\\" aria-label=\\\"Email field\\\">"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<input type=\\\"file\\\">",
"Output": "<input type=\\\"file\\\" aria-label=\\\"File upload\\\">"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<input type=\\\"date\\\">",
"Output": "<input type=\\\"date\\\" aria-label=\\\"Date picker\\\">"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<input type=\\\"color\\\">",
"Output": "<input type=\\\"color\\\" aria-label=\\\"Color picker\\\">"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<input type=\\\"range\\\">",
"Output": "<input type=\\\"range\\\" aria-label=\\\"Range selector\\\">"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<input type=\\\"search\\\">",
"Output": "<input type=\\\"search\\\" aria-label=\\\"Search field\\\">"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<input type=\\\"tel\\\">",
"Output": "<input type=\\\"tel\\\" aria-label=\\\"Telephone field\\\">"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<input type=\\\"url\\\">",
"Output": "<input type=\\\"url\\\" aria-label=\\\"URL field\\\">"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<input type=\\\"hidden\\\">",
"Output": "<input type=\\\"hidden\\\" aria-label=\\\"Hidden input\\\">"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<input type=\\\"image\\\" src=\\\"button.png\\\">",
"Output": "<input type=\\\"image\\\" src=\\\"button.png\\\" alt=\\\"Submit button\\\">"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<input type=\\\"text\\\" value=\\\"\\\">",
"Output": "<input type=\\\"text\\\" value=\\\"\\\" aria-label=\\\"Text input field\\\">"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<label><input type=\\\"radio\\\"> Option</label>",
"Output": "<label><input type=\\\"radio\\\" aria-label=\\\"Option\\\"> Option</label>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<label><input type=\\\"checkbox\\\"> Check</label>",
"Output": "<label><input type=\\\"checkbox\\\" aria-label=\\\"Check\\\"> Check</label>"
},
{
"Instruction": "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
"Input": "<a href=\\\"home.html\\\">Home</a>",
"Output": "<a href=\\\"home.html\\\" title=\\\"Go to home page\\\">Home</a>"
}
] |