SnehaPriyaaMP
commited on
Commit
•
50b0bf3
1
Parent(s):
66534be
Update AccessData - Sheet1 (1).csv
Browse files- AccessData - Sheet1 (1).csv +49 -55
AccessData - Sheet1 (1).csv
CHANGED
@@ -1,55 +1,49 @@
|
|
1 |
-
Instruction,Input,Output
|
2 |
-
Fix incomplete tags
|
3 |
-
Correct incorrect nesting
|
4 |
-
Remove duplicate attributes
|
5 |
-
Ensure unique IDs
|
6 |
-
Fix missing end tags
|
7 |
-
Correct nesting of elements
|
8 |
-
Ensure valid attribute syntax
|
9 |
-
Remove invalid elements
|
10 |
-
Fix improperly nested lists
|
11 |
-
Correct nesting in tables
|
12 |
-
Ensure complete attribute values
|
13 |
-
Fix broken attribute quotes
|
14 |
-
Remove duplicate IDs in forms
|
15 |
-
Fix missing end tags for lists
|
16 |
-
Correct nesting of inline elements
|
17 |
-
Ensure valid attribute names
|
18 |
-
Remove invalid nesting of elements
|
19 |
-
Fix duplicate attributes in forms
|
20 |
-
Correct missing attribute values
|
21 |
-
Fix incomplete self-closing tags
|
22 |
-
Remove invalid nesting of inline elements
|
23 |
-
Ensure proper closing tags
|
24 |
-
Fix improperly closed tags
|
25 |
-
Ensure unique IDs for interactive elements
|
26 |
-
Correct improperly nested sections
|
27 |
-
Ensure valid ID values
|
28 |
-
Fix broken attribute syntax
|
29 |
-
Correct duplicate attribute values
|
30 |
-
Remove invalid block elements
|
31 |
-
Ensure proper nesting of headings
|
32 |
-
Fix improperly nested form elements
|
33 |
-
Ensure valid attribute names in forms
|
34 |
-
Remove invalid nesting within lists
|
35 |
-
Ensure proper closing of nested elements
|
36 |
-
Fix duplicate attribute values in forms
|
37 |
-
Correct incomplete form elements
|
38 |
-
Ensure valid attribute values in links
|
39 |
-
Fix broken nesting of table elements
|
40 |
-
Ensure proper closing of inline elements
|
41 |
-
Remove invalid nesting of headings
|
42 |
-
Fix improperly closed form elements
|
43 |
-
Ensure valid syntax for attribute values
|
44 |
-
Remove duplicate attributes in lists
|
45 |
-
Fix incomplete tags in forms
|
46 |
-
Ensure unique IDs for form controls
|
47 |
-
Provide a document title
|
48 |
-
|
49 |
-
|
50 |
-
Remove duplicate attributes,An element contains duplicate attributes. Remove duplicates to ensure each attribute appears only once.,The element will have unique attributes without any duplicates.
|
51 |
-
Ensure unique IDs,The HTML code has multiple elements with the same ID. Ensure all IDs are unique.,All IDs in the HTML code will be unique.
|
52 |
-
Fix missing end tags,Some tags are missing their closing counterparts. Add the missing closing tags.,All tags will have their corresponding closing tags.
|
53 |
-
Correct nesting of elements,Elements are nested incorrectly. Fix the nesting to comply with HTML standards.,Elements will be nested correctly within their parent elements.
|
54 |
-
Ensure page title is present,The HTML page is missing a title element.,Add a <title> element with a descriptive title inside the <head> section. Example: <head><title>Descriptive Title Here</title></head>
|
55 |
-
Provide a descriptive title,"The HTML page has an empty or non-descriptive title, such as <title></title> or <title>Untitled Page</title>.",Update the <title> element to reflect the content or purpose of the page. Example: <title>Overview of Accessible Web Design Principles</title>
|
|
|
1 |
+
Instruction,Input,Output
|
2 |
+
Fix incomplete tags,<html><head><title>Page Title</title></head><body><h1>Welcome</h1><p>This is a paragraph<p></body></html>,"<html><head><title>Page Title</title></head><body><h1>Welcome</h1><p>This is a paragraph</p></body></html>"
|
3 |
+
Correct incorrect nesting,<div><p>Paragraph 1</div><div><p>Paragraph 2</p></div>,"<div><p>Paragraph 1</p></div><div><p>Paragraph 2</p></div>"
|
4 |
+
Remove duplicate attributes,<input type="text" type="text" name="name">,<input type="text" name="name">
|
5 |
+
Ensure unique IDs,<div id="duplicateID"></div><div id="duplicateID"></div>,"<div id="duplicateID1"></div><div id="duplicateID2"></div>"
|
6 |
+
Fix missing end tags,<ul><li>Item 1<li>Item 2</ul>,"<ul><li>Item 1</li><li>Item 2</li></ul>"
|
7 |
+
Correct nesting of elements,<table><tr><td>Cell 1<tr><td>Cell 2</td></tr></table>,"<table><tr><td>Cell 1</td></tr><tr><td>Cell 2</td></tr></table>"
|
8 |
+
Ensure valid attribute syntax,<img src=image.jpg alt=Image>,"<img src='image.jpg' alt='Image'>"
|
9 |
+
Remove invalid elements,<b>Bold text</b><invalid>Invalid</invalid>,"<b>Bold text</b>"
|
10 |
+
Fix improperly nested lists,<ul><li>Item 1</ul><ol><li>Item 2</ol>,"<ul><li>Item 1</li></ul><ol><li>Item 2</li></ol>"
|
11 |
+
Correct nesting in tables,<table><tr><td>Cell</td></tr><tr><td>Cell</td></tr></table>,"<table><tr><td>Cell</td></tr><tr><td>Cell</td></tr></table>"
|
12 |
+
Ensure complete attribute values,<input type="text" name=>,<input type="text" name="name">
|
13 |
+
Fix broken attribute quotes,<input type=text" name='name'>,<input type="text" name='name'>
|
14 |
+
Remove duplicate IDs in forms,<form><input id="duplicateID"><input id="duplicateID"></form>,"<form><input id="duplicateID1"><input id="duplicateID2"></form>"
|
15 |
+
Fix missing end tags for lists,<ul><li>Item 1<li>Item 2</ul>,"<ul><li>Item 1</li><li>Item 2</li></ul>"
|
16 |
+
Correct nesting of inline elements,<span><div>Block inside inline</div></span>,"<div><span>Block inside inline</span></div>"
|
17 |
+
Ensure valid attribute names,<div clas="className"></div>,"<div class="className"></div>"
|
18 |
+
Remove invalid nesting of elements,<div><p>Paragraph<div>Nested div</div></p></div>,"<div><p>Paragraph</p><div>Nested div</div></div>"
|
19 |
+
Fix duplicate attributes in forms,<input type="text" type="text" name="name">,<input type="text" name="name">
|
20 |
+
Correct missing attribute values,<input type="text" name=>,<input type="text" name="name">
|
21 |
+
Fix incomplete self-closing tags,<img src="image.jpg">,<img src="image.jpg" />
|
22 |
+
Remove invalid nesting of inline elements,<span><div>Block inside inline</div></span>,"<div><span>Block inside inline</span></div>"
|
23 |
+
Ensure proper closing tags,<div><p>Paragraph<div>Nested div</div>,"<div><p>Paragraph</p><div>Nested div</div></div>"
|
24 |
+
Fix improperly closed tags,<div><p>Paragraph</div>,"<div><p>Paragraph</p></div>"
|
25 |
+
Ensure unique IDs for interactive elements,<button id="duplicateID"></button><button id="duplicateID"></button>,"<button id="duplicateID1"></button><button id="duplicateID2"></button>"
|
26 |
+
Correct improperly nested sections,<section><header>Header<section>Nested section</section></header></section>,"<section><header>Header</header><section>Nested section</section></section>"
|
27 |
+
Ensure valid ID values,<div id="123invalid"></div>,"<div id="validID123"></div>"
|
28 |
+
Fix broken attribute syntax,<a href=www.example.com>Link</a>,"<a href='www.example.com'>Link</a>"
|
29 |
+
Correct duplicate attribute values,<input type="text" name="name" name="duplicate">,<input type="text" name="name">
|
30 |
+
Remove invalid block elements,<span><div>Block inside inline</div></span>,"<div><span>Block inside inline</span></div>"
|
31 |
+
Ensure proper nesting of headings,<h1>Heading 1<h2>Subheading<h1>Another Heading</h2></h1>,"<h1>Heading 1</h1><h2>Subheading</h2><h1>Another Heading</h1>"
|
32 |
+
Fix improperly nested form elements,<form><input><button>Submit</button></form>,"<form><input /><button>Submit</button></form>"
|
33 |
+
Ensure valid attribute names in forms,<input typ="text">,"<input type="text">"
|
34 |
+
Remove invalid nesting within lists,<ul><li>Item<ul><li>Nested Item</li></ul></li></ul>,"<ul><li>Item<ul><li>Nested Item</li></ul></li></ul>"
|
35 |
+
Ensure proper closing of nested elements,<div><p>Paragraph<div>Nested div</div>,"<div><p>Paragraph</p><div>Nested div</div></div>"
|
36 |
+
Fix duplicate attribute values in forms,<input type="text" name="name" name="duplicate">,<input type="text" name="name">
|
37 |
+
Correct incomplete form elements,<form><input type="text" name=></form>,<form><input type="text" name="name"></form>
|
38 |
+
Ensure valid attribute values in links,<a href=>Link</a>,<a href="url">Link</a>
|
39 |
+
Fix broken nesting of table elements,<table><tr><td>Cell<tr><td>Another Cell</td></tr></table>,"<table><tr><td>Cell</td></tr><tr><td>Another Cell</td></tr></table>"
|
40 |
+
Ensure proper closing of inline elements,<span>Text<span>,"<span>Text</span>"
|
41 |
+
Remove invalid nesting of headings,<h1><p>Paragraph<h1>Heading</h1></p>,"<h1>Heading</h1><p>Paragraph</p>"
|
42 |
+
Fix improperly closed form elements,<form><input><button>Submit</form>,"<form><input /><button>Submit</button></form>"
|
43 |
+
Ensure valid syntax for attribute values,<input type="text" name=name>,"<input type="text" name='name'>"
|
44 |
+
Remove duplicate attributes in lists,<ul><li>Item<li>Item</ul>,"<ul><li>Item</li><li>Item</li></ul>"
|
45 |
+
Fix incomplete tags in forms,<form><input type="text" name="name"></form>,"<form><input type="text" name="name"></form>"
|
46 |
+
Ensure unique IDs for form controls,<form><input id="duplicateID"><input id="duplicateID"></form>,"<form><input id="duplicateID1"><input id="duplicateID2"></form>"
|
47 |
+
Provide a document title,<html><head></head><body><h1>Welcome</h1></body></html>,"<html><head><title>Welcome</title></head><body><h1>Welcome</h1></body></html>"
|
48 |
+
Ensure page title is present,<html><head></head><body><h1>Welcome to Our Site</h1></body></html>,"<html><head><title>Welcome to Our Site</title></head><body><h1>Welcome to Our Site</h1></body></html>"
|
49 |
+
Provide a descriptive title,<html><head><title></title></head><body><h1>Company Info</h1></body></html>,"<html><head><title>Company Info</title></head><body><h1>Company Info</h1></body></html>"
|
|
|
|
|
|
|
|
|
|
|
|