With that encoding declared you can replace all the entities with the actual characters.
Will continue reading and possibly return with more comments.
Back…
I didn’t see a <caption/> in your table. That is a required element per accessibility guidelines. Unfortunately I cannot find a paste-in validator. One must have a web mounted site to be assessed and there is likely a fee. Sucks. Back in the day we could test our code for free. Not no more, it seems.
We could always count on W3C for markup and style sheet validation, but there is little or no free validation drive-by service for accessibility compliance. That now seems to be on a subscriber domain basis.
Hello everyone:)
Just finished my Cheat-Sheet and want to share ,may it helps with the idea…
Also will be helpful to get feedbacks:)
thanks
How it looks: https://leravolt.github.io/mycss-htmlcheatsheet/
Hi everyone;
I have finished my Challenge Project: Build Your Own Cheat Sheet. I would appreciate any feedback.
here is my code,
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="styles.css" type="text/css" rel="stylesheet">
<title>Cheat Sheet</title>
</head>
<body>
<h1>HTML Table</h1>
<h2>Table Tags</h2>
<table>
<thead>
<tr>
<th>Tag</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><table></td>
<td>Table</td>
<td>Represents tabular data</td>
</tr>
<tr>
<td><th></td>
<td>Table Header</td>
<td>Defines a cell as the header of a group of table cells</td>
</tr>
<tr>
<td><tr></td>
<td>Table Row</td>
<td>Defines a row in a table</td>
</tr>
<tr>
<td><td></td>
<td>Table Data Cell</td>
<td>Defines a cell of a table that contains data</td>
</tr>
<tr>
<td><thead></td>
<td>Table Head</td>
<td>Defining the head of the columns of the table</td>
</tr>
<tr>
<td><tbody></td>
<td>Table Body</td>
<td>Groups the body content in a table</td>
</tr>
<tr>
<td><tfoot></td>
<td>Table Foot</td>
<td>Defines a set of rows summarizing the columns of the table</td>
</tr>
<tr>
<td><caption></td>
<td>Table Caption</td>
<td>Element specifies the caption (or title) of a table</td>
</tr>
<tr>
<td><colgroup></td>
<td>Table Column Group</td>
<td>Defines a group of columns within a table</td>
</tr>
<tr>
<td><col></td>
<td>Table Column</td>
<td>
Element Specifies column properties for each column within a
<colgroup> elemente
</td>
</tr>
</tbody>
</table>
<h2>Table Attributes</h2>
<table>
<thead>
<tr>
<th>Tag</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>colspan</td>
<td>Column Span</td>
<td>Defines how many columns a td element should span</td>
</tr>
<tr>
<td>rowspan</td>
<td>Row Span</td>
<td>Defines how many rows a td element should span</td>
</tr>
</tbody>
</table>
</body>
</html>
Hello fellow coders, here is my project, you are welcome to fork my repository and create a pull request if you feel there is a better way to code something, you are also welcome to comment here with the same